You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- {% from "macros.j2" import render with context %}
- {% extends "base.j2" %}
-
- {% block main -%}
- starting test
- {% include "article.j2" %}
- ending test
-
- <article class="post">
-
- <h1><a class="no-tufte-underline" href="{{ resource.url }}">{{ resource.meta.title }}</a></h1>
-
- <p>Posted: {{ resource.meta.created.strftime('%B %e, %Y') }}</p>
-
- {{ resource.meta.created.tz }}
- {% if resource.meta.tags %}
- <ul class="tags clear">
- {% for tag in resource.meta.tags %}
- <li>
- <a class="small" href="{{ content_url('blog/tags/'~tag~'.html') }}">
- {{ tag }}
- </a>
- </li>
- {% endfor %}
- </ul>
- {% endif %}
- <div class="clear"/>
- {% filter markdown|typogrify -%}
- {% mark post -%}
- {% block post -%}{%- endblock %}
- {%- endmark %}
- {%- endfilter %}
- </article>
-
- {%- endblock %}
|