Skip to content

Commit 0fb2601

Browse files
SEO
1 parent 3d6672a commit 0fb2601

3 files changed

Lines changed: 14 additions & 8 deletions

File tree

Gemfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,10 @@ platforms :mingw, :x64_mingw, :mswin, :jruby do
2626
gem "tzinfo-data"
2727
end
2828

29+
gem 'jekyll-seo-tag'
2930
gem "webrick"
30-
3131
# Performance-booster for watching directories on Windows
3232
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
33-
3433
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
3534
# do not have a Java counterpart.
3635
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]

_config.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
# Site settings
2-
title: C# Brasil | Unindo paixão e código
3-
description: "O blog do C# Brasil sobre Tecnologia e desenvolvimento"
2+
title: "C# Brasil"
3+
description: "Unindo paixão e código | Blog sobre Tecnologias e Desenvolvimento"
44
url: "http://csharpbrasil.com.br"
55
author:
66
name: "Raphael Cardoso"
77
email: "csharpbrasil@outlook.com"
88
url: "http://www.csharpbrasil.com.br"
99

10+
# Jekyll SEO
11+
social:
12+
name: C# Brasil
13+
links:
14+
- https://twitter.com/csharpbrasil
15+
- https://www.facebook.com/csharpbrasil
16+
- https://github.com/csharpbrasil
17+
1018
# Build settings
1119
baseurl: / # Change this to your relative path (ex: /blog/), or leave just a /
1220
markdown: kramdown
@@ -29,6 +37,7 @@ defaults:
2937
# Plugins
3038
plugins:
3139
- jekyll-paginate
40+
- jekyll-seo-tag
3241

3342
# Custom variables
34-
version: "1.0.0"
43+
version: "1.0.0"

_includes/head.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22
<!-- Meta -->
33
<meta charset="UTF-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
5-
<meta name="description" content="">
6-
<meta name="author" content="C# Brasil">
75

8-
<title>{%if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
6+
{% seo %}
97

108
<!-- CSS & fonts -->
119
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl | replace: '//', '/' }}?{{site.time | date: '%s%N'}}">

0 commit comments

Comments
 (0)