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.
|
- <article class="post">
-
- <h1><a class="no-tufte-underline" href="{{ res.url }}">{{ res.meta.title }}</a></h1>
-
- <p>Posted: {{ res.meta.created.strftime('%B %e, %Y') }}</p>
-
- {% if res.meta.tags %}
- <ul class="tags clear">
- {% for tag in res.meta.tags %}
- <li>
- <a class="small" href="{{ content_url('blog/tags/'~tag~'.html') }}">
- {{ tag }}
- </a>
- </li>
- {% endfor %}
- </ul>
- {% endif %}
- <div class="clear"/>
- {% refer to res.relative_path as post %}
- {{ post.post|markdown|typogrify }}
- {#
- {% filter markdown|typogrify -%}
- {% mark post -%}
- {% block post -%}{%- endblock %}
- {%- endmark %}
- {%- endfilter %}
- #}
- </article>
|