Skip to content

Commit d1be5ce

Browse files
committed
updated gems and syntax
1 parent 2a796bf commit d1be5ce

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

_config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ author:
2323
description: Ramblings of Garth Braithwaite.
2424
twitter:
2525
username: garthdb
26-
gems:
26+
plugins:
2727
- jekyll-seo-tag
2828
- jekyll-feed
2929
exclude:
@@ -33,7 +33,7 @@ exclude:
3333
- README.md
3434
- LICENSE
3535
- CNAME
36-
baseurl:
36+
baseurl:
3737
url: http://garthdb.com
3838
sass:
3939
sass_dir: css

index.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: default
33
---
44

5-
{% if site.categories.writings | size != 0 %}
5+
{% if site.categories.writings.size != 0 %}
66
<section class="post-list">
77
<h1>Writings</h1>
88
<ul>
@@ -12,7 +12,7 @@ <h1>Writings</h1>
1212
</ul>
1313
</section>
1414
{% endif %}
15-
{% if site.categories.talks | size != 0 %}
15+
{% if site.categories.talks.size != 0 %}
1616
<section class="post-list">
1717
<h1>Talks</h1>
1818
<ul>
@@ -22,7 +22,7 @@ <h1>Talks</h1>
2222
</ul>
2323
</section>
2424
{% endif %}
25-
{% if site.categories.projects | size != 0 %}
25+
{% if site.categories.projects.size != 0 %}
2626
<section class="post-list">
2727
<h1>Projects</h1>
2828
<ul>
@@ -32,7 +32,7 @@ <h1>Projects</h1>
3232
</ul>
3333
</section>
3434
{% endif %}
35-
{% if site.categories.stuff | size != 0 %}
35+
{% if site.categories.stuff.size != 0 %}
3636
<section class="post-list">
3737
<h1>Stuff</h1>
3838
<ul>

0 commit comments

Comments
 (0)