Nicer layout for tagged posts
This commit is contained in:
parent
8d20d21b1b
commit
7481642f93
|
@ -8,10 +8,14 @@ data:
|
|||
|
||||
<a href="/tagged/mozilla.xml">RSS Feed</a>
|
||||
|
||||
<ul>
|
||||
{% for post in collections.posts.pages %}
|
||||
<table>
|
||||
{%- for post in collections.posts.pages %}
|
||||
{%- assign postyear = post.published_date | date: "%Y" %}
|
||||
{%- if post.data.tags and post.data.tags contains "mozilla" -%}
|
||||
<li>{{ post.published_date | date: "%d %b %Y"}}: <a href="/{{post.permalink }}">{{post.title}}</a></li>
|
||||
{%- endif -%}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<tr>
|
||||
<td>{{ post.published_date | date: "%d. %b %Y"}}</td>
|
||||
<td><a href="/{{post.permalink }}">{{post.title}}</a></td>
|
||||
</tr>
|
||||
{%- endif %}
|
||||
{%- endfor %}
|
||||
</table>
|
||||
|
|
|
@ -8,10 +8,14 @@ data:
|
|||
|
||||
<a href="/tagged/rust.xml">RSS Feed</a>
|
||||
|
||||
<ul>
|
||||
{% for post in collections.posts.pages %}
|
||||
<table>
|
||||
{%- for post in collections.posts.pages %}
|
||||
{%- assign postyear = post.published_date | date: "%Y" %}
|
||||
{%- if post.data.tags and post.data.tags contains "rust" -%}
|
||||
<li>{{ post.published_date | date: "%d %b %Y"}}: <a href="/{{post.permalink }}">{{post.title}}</a></li>
|
||||
{%- endif -%}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<tr>
|
||||
<td>{{ post.published_date | date: "%d. %b %Y"}}</td>
|
||||
<td><a href="/{{post.permalink }}">{{post.title}}</a></td>
|
||||
</tr>
|
||||
{%- endif %}
|
||||
{%- endfor %}
|
||||
</table>
|
||||
|
|
Loading…
Reference in a new issue