Back to 2 spaces

This commit is contained in:
Oliver Davies 2015-05-15 21:08:41 -07:00
parent db2a31c871
commit f769eee7f4
118 changed files with 1050 additions and 1050 deletions

View file

@ -3,12 +3,12 @@ layout: default
title: Tags
nav: blog
use:
- posts_tags
- posts_tags
---
<h2>Tags</h2>
<ul>
{% for tag,posts in data.posts_tags %}
<li><a href="{{ site.url }}/blog/tags/{{ tag|url_encode(true) }}">{{ tag }}</a></li>
<li><a href="{{ site.url }}/blog/tags/{{ tag|url_encode(true) }}">{{ tag }}</a></li>
{% endfor %}
</ul>

View file

@ -3,21 +3,21 @@ layout: default
title: Tag Archive
nav: blog
generator:
- posts_tag_index
- posts_tag_index
---
{% block head_meta %}
<link rel="alternate" type="application/atom+xml" href="{{ site.url }}/blog/tags/{{ page.tag|url_encode(true) }}.xml" title="{{ site.title }} '{{ page.tag }}' tag feed" />
<meta name="robots" content="noindex, follow">
<link rel="alternate" type="application/atom+xml" href="{{ site.url }}/blog/tags/{{ page.tag|url_encode(true) }}.xml" title="{{ site.title }} '{{ page.tag }}' tag feed" />
<meta name="robots" content="noindex, follow">
{% endblock %}
{% block title %}{{ page.title }} "{{ page.tag }}"{% endblock %}
{% block content %}
<h2>"{{ page.tag }}"</h2>
<h2>"{{ page.tag }}"</h2>
<ul>
{% for post in page.tag_posts %}
<li><a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
{% for post in page.tag_posts %}
<li><a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}

View file

@ -3,21 +3,21 @@ generator: [posts_tag_index]
---
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>{{ site.title }}</title>
<link>{{ site.url }}</link>
<language>en</language>
{% if site.description %}<description>{{ site.description|raw }}</description>{% endif %}
<atom:link href="{{ site.url }}{{ page.url }}" rel="self" type="application/rss+xml" />
<lastBuildDate>{{ site.calculated_date|date('r') }}</lastBuildDate>
{% for post in page.tag_posts|slice(0, 10) %}
<item>
<title>{{ post.title }}</title>
<link>{{ site.url }}{{ post.url }}</link>
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
<pubDate>{{ post.date|date('r') }}</pubDate>
<description>{{ post.description|raw }}</description>
</item>
{% endfor %}
</channel>
<channel>
<title>{{ site.title }}</title>
<link>{{ site.url }}</link>
<language>en</language>
{% if site.description %}<description>{{ site.description|raw }}</description>{% endif %}
<atom:link href="{{ site.url }}{{ page.url }}" rel="self" type="application/rss+xml" />
<lastBuildDate>{{ site.calculated_date|date('r') }}</lastBuildDate>
{% for post in page.tag_posts|slice(0, 10) %}
<item>
<title>{{ post.title }}</title>
<link>{{ site.url }}{{ post.url }}</link>
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
<pubDate>{{ post.date|date('r') }}</pubDate>
<description>{{ post.description|raw }}</description>
</item>
{% endfor %}
</channel>
</rss>