-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
e77bb6c
commit fc4c7d8
Showing
4 changed files
with
45 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
title: "Tags" | ||
layout: default | ||
permalink: "/tags.html" | ||
--- | ||
|
||
<div class="row listrecent"> | ||
{% for tag in site.tags %} | ||
<div class="section-title col-md-12 mt-4"> | ||
<h2 id="{{ tag[0] | replace: " ","-" }}">Tag <span class="text-capitalize">{{ tag[0] }}</span></h2> | ||
</div> | ||
{% assign pages_list = tag[1] %} | ||
{% for post in pages_list %} | ||
{% if post.title != null %} | ||
{% if group == null or group == post.group %} | ||
{% include postbox.html %} | ||
{% endif %} | ||
{% endif %} | ||
{% endfor %} | ||
{% assign pages_list = nil %} | ||
{% assign group = nil %} | ||
{% endfor %} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
layout: tags | ||
title: Tags | ||
permalink: /tags | ||
--- |
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