{%- macro post(page, short=False) %}

{{ page.title }}{% if page.link != page.uri %} {% endif %}

Posted on {{ page.date | longdate }} {%- if page.author %} by {{ page.author }} {%- endif %} » Tagged as {%- for tag in page.tags %} {{ tag }} {%- endfor %}
{%- if short %}
{{ page.short }}
{%- else %}
{{ page.content }}
{%- endif %} {%- if short and page.short != page.content %} Continue Reading » {%- endif %}
{%- endmacro %} {%- macro breadcrumbs(page) %} {%- for breadcrumb in page.breadcrumbs %} {%- if not loop.first %} » {% endif -%} {{ breadcrumb.title }} {%- endfor %} {%- endmacro %}