-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1ffc229
commit b05a527
Showing
19 changed files
with
313 additions
and
63 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
File renamed without changes.
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,30 +1,28 @@ | ||
<div class="row d-flex justify-content-center"> | ||
<div class="col-12 col-lg-10 col-xl-8"> | ||
<div class="col-12"> | ||
{%- for post in posts %} | ||
<div class=" border-top py-5"> | ||
<h2>{{ post.data.title}}</h2> | ||
<time datetime="{{ post.date | htmlDateString }}">{{ post.date | readableDate }}</time> | ||
<p>{{ post.data.intro }}</p> | ||
<a href="{{ post.url | url }}" class="link-fancy">Read more...</a> | ||
</div> | ||
<div class=" border-top py-5"> | ||
<h2>{{ post.data.title}}</h2> | ||
<time datetime="{{ post.date | htmlDateString }}">{{ post.date | readableDate }}</time> | ||
{% for tag in post.data.tags | filterTagList %} | ||
{% set tagUrl %}/tags/{{ tag | slug }}/{% endset %} | ||
<a href="{{ tagUrl | url }}" class="post-tag">{{ tag }}</a> | ||
{% endfor %} | ||
<p>{{ post.data.summary }}</p> | ||
<a href="{{ post.url | url }}" class="link-fancy">Read more...</a> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
|
||
|
||
<div class="row d-flex justify-content-center"> | ||
<div class="col-12 col-lg-10 col-xl-8"> | ||
<div class="col-12"> | ||
<div class="row d-flex justify-content-between"> | ||
<div class="col"> | ||
{% if pagination.href.previous %} | ||
<a href="{{pagination.href.previous}}"><< Previous Page</a> | ||
{% endif %} | ||
</div> | ||
<div class="col text-end"> | ||
{% if pagination.href.next %} | ||
<a href="{{pagination.href.next}}">Next Page >></a> | ||
{% endif %} | ||
<div class="col"> | ||
{% if pagination.href.previous %} | ||
<a href="{{pagination.href.previous}}"><< Previous Page</a> {% endif %} </div> <div class="col text-end"> {% if pagination.href.next %} <a href="{{pagination.href.next}}">Next Page >></a> | ||
{% endif %} | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
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
Oops, something went wrong.
b05a527
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs: