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.
 
 
 
 

22 lines
493 B

  1. {% extends "base.j2" %}
  2. {% from "macros.j2" import render with context %}
  3. {% block main %}
  4. <!--
  5. {% block page_title %}<h1 class="title">{{ resource.meta.title }}</h1>{% endblock %}
  6. -->
  7. {% for res in resource.node.walk_resources_sorted_by_time()[0:1] %}
  8. block test
  9. prerender macro
  10. {% include "article.j2" %}
  11. old data
  12. <h1><a href="{{ res.relative_path }}">{{ res.meta.title }}</a></h1>
  13. {% refer to res.relative_path as post %}
  14. {{ post.post|markdown|typogrify }}
  15. {% endfor %}
  16. {% endblock %}