Something went wrong. Try again.
Digital Garden SSG
digital-garden ssg static-site-generator
Something went wrong. Try again.
380 B · 16 lines
HTML
at initial
1234567891011121314151617{% extends "base.html" %} {% block title %}{{ title }}{% endblock %} {% blockcontent %}<article> <h1>{{ title }}</h1> <p> {{ page_count }} page{{ page_count | pluralize }} in <strong>{{ folder }}</strong>. </p>
<ul> {% for page in pages %} <li><a href="{{ page.url | safe }}">{{ page.title }}</a></li> {% endfor %} </ul></article>{% endblock %}