26 lines
584 B
HTML
26 lines
584 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{{ page.title }} - {{ config.title }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="article-header">
|
|
<h1>{{ page.title }}</h1>
|
|
<div class="info">
|
|
<p class="date">{{ page.date | date(format="%B %-d, %Y") }}</p>
|
|
<p class="tags">
|
|
{% for tag in page.taxonomies["tags"] %}
|
|
<a href="{{ get_taxonomy_url(kind="tags", name=tag) }}">#{{ tag }}</a>
|
|
{%- endfor %}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="typography">
|
|
{{ page.content | safe }}
|
|
</div>
|
|
|
|
{% endblock %}
|