Skip to content

Commit

Permalink
fix all the jekyll errors 🙄
Browse files Browse the repository at this point in the history
  • Loading branch information
lchski committed Dec 19, 2018
1 parent ca13457 commit 61e3b44
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion feeds/links.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ layout: null
<pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
<generator>Jekyll v{{ jekyll.version }}</generator>
{% assign sorted_posts = (site.links | sort: 'date') | reverse %}
{% assign sorted_posts = site.links | sort: 'date' | reverse %}
{% for post in sorted_posts limit:10 %}
<item>
<title>{{ post.title | xml_escape }}</title>
Expand Down
2 changes: 1 addition & 1 deletion feeds/study.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ layout: null
<pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
<generator>Jekyll v{{ jekyll.version }}</generator>
{% assign sorted_posts = (site.posts | concat: site.newsletters | sort: 'date') | reverse %}
{% assign sorted_posts = site.posts | concat: site.newsletters | sort: 'date' | reverse %}
{% for post in sorted_posts limit:10 %}
<item>
<title>{{ post.title | xml_escape }}</title>
Expand Down
2 changes: 1 addition & 1 deletion hit-and-miss/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h1 class="page__intro i">Hit and Miss</h1>
</header>

<ol class="block-list text-item-list bordered-list">
{% assign sorted_newsletters = (site.newsletters | sort: 'date') | reverse %}
{% assign sorted_newsletters = site.newsletters | sort: 'date' | reverse %}
{% for newsletter in sorted_newsletters %}
<li>
<h2><a href="{{ newsletter.url }}">#{{ newsletter.number }}: {{ newsletter.title }}</a></h2>
Expand Down
2 changes: 1 addition & 1 deletion links/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ <h1 class="page__intro">Links</h1>
</header>

<ul class="block-list text-item-list spacey-list">
{% assign sorted_links = (site.links | sort: 'date') | reverse %}
{% assign sorted_links = site.links | sort: 'date' | reverse %}
{% for link in sorted_links %}
<li>
<h2><a href="{{ link.link }}">{{ link.link_title }}</a></h2>
Expand Down
2 changes: 1 addition & 1 deletion office/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h1 class="page__intro">Office</h1>
</p>

<ul class="list pl0 w-50-ns mw6">
{% assign sorted_projects = (site.projects | sort: 'date') | reverse %}
{% assign sorted_projects = site.projects | sort: 'date' | reverse %}
{% for project in sorted_projects %}
{% assign project_item_classes = 'b--black-20 pb2' %}
{% if forloop.last != true %}
Expand Down
2 changes: 1 addition & 1 deletion study/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h1 class="page__intro">Study</h1>
</header>

<ol class="block-list text-item-list bordered-list">
{% assign sorted_posts = (site.posts | concat: site.newsletters | sort: 'date') | reverse %}
{% assign sorted_posts = site.posts | concat: site.newsletters | sort: 'date' | reverse %}
{% for post in sorted_posts %}
<li>
<h2><a href="{{ post.url }}">{{ post.title | markdownify | remove: '<p>' | remove: '</p>' }}</a></h2>
Expand Down
2 changes: 1 addition & 1 deletion study/reading/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h1 class="page__intro">Reading notes</h1>
</header>

<ul class="list pl0 w-50-ns mw6">
{% assign sorted_books = (site.books | sort: 'date') | reverse %}
{% assign sorted_books = site.books | sort: 'date' | reverse %}
{% for book in sorted_books %}
{% assign book_item_classes = 'b--black-20 pb2' %}
{% if forloop.last != true %}
Expand Down
2 changes: 1 addition & 1 deletion study/urop/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ <h1 class="page__intro mb0">Introducing Computers in Ontario’s Classrooms</h1>
</p>

<ul class="list pl0 w-50-ns mw6 mt4">
{% assign sorted_findings = (site.findings | sort: 'date') | reverse %}
{% assign sorted_findings = site.findings | sort: 'date' | reverse %}
{% for finding in sorted_findings %}
{% assign finding_item_classes = 'b--black-20 pb2' %}
{% if forloop.last != true %}
Expand Down

0 comments on commit 61e3b44

Please sign in to comment.