The blog.
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.
 
 
 
 

29 lines
620 B

  1. <article class="post">
  2. <h1><a class="no-tufte-underline" href="{{ res.url }}">{{ res.meta.title }}</a></h1>
  3. <p>Posted: {{ res.meta.created.strftime('%B %e, %Y') }}</p>
  4. {% if res.meta.tags %}
  5. <ul class="tags clear">
  6. {% for tag in res.meta.tags %}
  7. <li>
  8. <a class="small" href="{{ content_url('blog/tags/'~tag~'.html') }}">
  9. {{ tag }}
  10. </a>
  11. </li>
  12. {% endfor %}
  13. </ul>
  14. {% endif %}
  15. <div class="clear"/>
  16. {% refer to res.relative_path as post %}
  17. {{ post.post|markdown|typogrify }}
  18. {#
  19. {% filter markdown|typogrify -%}
  20. {% mark post -%}
  21. {% block post -%}{%- endblock %}
  22. {%- endmark %}
  23. {%- endfilter %}
  24. #}
  25. </article>