article.html (435B)
1 {% extends "index.html" %} 2 {% block content %} 3 <article> 4 <h1><a href="{{ current_url | safe }}">{{ page.title | safe }}</a></h1> 5 <small> 6 <time datetime="{{ page.date }}">{{ page.date | date(format="%B %d, %Y") }}</time> 7 by <a href="{{ config.base_url | safe }}">{{ config.extra.d3_author | safe }}</a> 8 </small> 9 {{ page.content | safe }} 10 </article> 11 {% endblock content %}