{% if page.title or page.title == 'me' %}
{{ page.title }}
{% else %}
{{ site.title }}
{% endif %}
{% if page.tag %}
{{ site.title }} - {{ page.tag }}
{% else %}
{{ site.title }}
{% endif %}
{% include topbar.html %}
(C:)
{% assign tags = site.tags | sort %} {% for tag in tags %}
{{ tag[0] | replace:'-', ' ' }}
{% endfor %}
All
{% if page.intro %}
{{ content }}
{% else %}
{% unless page.date %} {% unless page.tag %}
{% for post in site.posts %}
{{ post.title }}
{% endfor %}
{% else %} {{ content }} {% endunless %} {% else %}
{% for post in site.posts %}
{{ post.title }}
{% endfor %}
{% endunless %}
{% endif %}
{% if page.tag %}
{{ site.tags[page.tag] | size }} post(s)
{% else %}
{{ site.posts | size }} post(s)
{% endif %}
{% if page.title %}
{{ page.title }}
{{ page.date | date: '%B %-d, %Y' }}
{{ content }}
{% endif %}