-
Notifications
You must be signed in to change notification settings - Fork 311
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Adds `matching` filter to return matching posts for authors - Corrects missing team member data - Improves the post layout - Fixes post partials for reusability Obvious problems: there's still questions around when `page.` is necessary in the posts layout, and when it causes problems.
- Loading branch information
Showing
12 changed files
with
52 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
on <span class="post-date">{{ post.date | date: "%B %-d, %Y" }}</span> | ||
on <span class="post-date">{{ date | date: "%B %-d, %Y" }}</span> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<p>{{ post.data.excerpt }}</p> | ||
<p>{{ excerpt }}</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<li class="border-bottom-1px border-base-lighter padding-y-6"> | ||
{% include "post-title.html", post: post %} | ||
{% include "post-title.html", title: post.data.title, url: post.url %} | ||
<p> | ||
{% include "post-authors.html", post: post -%} | ||
{%- include "post-date.html", post: post %} | ||
{% include "post-authors.html", authors: post.data.authors -%} | ||
{%- include "post-date.html", date: post.date %} | ||
</p> | ||
{% include "post-excerpt.html", post: post %} | ||
{% include "post-tags.html", post: post %} | ||
{% include "post-excerpt.html", excerpt: post.data.excerpt %} | ||
{% include "post-tags.html", tags: post.tags %} | ||
</li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<h2> | ||
<a href="{{ post.url | prepend: site.baseurl }}" class="post-link text-no-underline"> | ||
{{ post.data.title }} | ||
<a href="{{ url | prepend: site.baseurl }}" class="post-link text-no-underline"> | ||
{{ title }} | ||
</a> | ||
</h2> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters