File tree 2 files changed +16
-1
lines changed
2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 1
1
_site
2
2
.sass-cache
3
- .jekyll-metadata
3
+ .jekyll-metadata
4
+ .jekyll-cache
Original file line number Diff line number Diff line change 7
7
< title > {% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</ title >
8
8
< meta name ="description " content ="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %} ">
9
9
10
+ {% assign kw = nil %}
11
+ {% if page.keywords %}
12
+ {% assign kw = page.keywords %}
13
+ {% else if page.tags %}
14
+ {% assign kw = page.tags %}
15
+ {% endif %}
16
+ {% if kw %}
17
+ {% assign kw_string = "" %}
18
+ {% for k in kw %}
19
+ {% assign kw_string = kw_string | append: k | append: ', ' %}
20
+ {% endfor %}
21
+ < meta name ="keywords " content ="{{ kw_string }} "/>
22
+ {% endif %}
23
+
10
24
{% if site.twitter_username %}
11
25
< meta name ="twitter:card " content ="summary " />
12
26
< meta name ="twitter:site " content ="@{{ site.twitter_username }} " />
You can’t perform that action at this time.
0 commit comments