page.html (534B)
1 {% extends "index.html" %} 2 {% block content %} 3 <article> 4 <section id="article-header"> 5 <h1><a href="{{ current_url }}">{{ page.title }}</a></h1> 6 <small> 7 Published by <a href="{{ config.base_url }}">{{ config.title }}</a> on 8 <time datetime="{{ page.date }}">{{ page.date | date(format="%B %d, %Y") }}</time> 9 <br/> 10 <a href="..">< Back</a> 11 </small> 12 </section> 13 {{ page.content | safe }} 14 </article> 15 {% endblock content %}