-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfeed_sitemap.html
More file actions
36 lines (33 loc) · 1.09 KB
/
feed_sitemap.html
File metadata and controls
36 lines (33 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
title: "Posts ordered by tag"
---
<h1>Posts ordered by tag</h1>
<p>
All the posts with project updates, ordered by tag.
</p>
<p>
See <a href="/feed.html">here</a> all posts ordered by date.
</p>
<div id="tags-list">
{% for tag in site.tags %}
{% assign tag_name = tag | first %}
{% assign tag_name_pretty = tag_name | replace: "_", " " | capitalize %}
<div class="tag-list">
<div id="#{{ tag_name | slugize }}"></div>
<h3 class="post-list-heading line-bottom"> In #{{ tag_name }}: </h3>
<a id="{{ tag_name | slugize }}"></a>
<ul class="post-list post-list-narrow">
{% for post in site.tags[tag_name] %}
<li>
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
<b>
<a href="{{ post.url | relative_url }}">
{{ post.title | | remove_first: "Feed: " | escape }}
</a>
</b> - <i>{{ post.date | date: date_format }}</i>
</li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>