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.
31 lines
643 B
31 lines
643 B
{% extends "page_template.html" %}
|
|
{% import "macros.html" as macros %}
|
|
|
|
{% block css %}
|
|
{{ super() }}
|
|
<link rel="stylesheet" href="/page-md.css"/>
|
|
{% endblock css %}
|
|
|
|
{% block content %}
|
|
<article>
|
|
<header>
|
|
{% if page.path is matching("portfolio/(..*)") %}
|
|
{% else %}
|
|
<span class="muted">{{ macros::meta(page=page) }}</span>
|
|
{% endif %}
|
|
</header>
|
|
<div>
|
|
{{ page.content | safe }}
|
|
</div>
|
|
</article>
|
|
{% endblock content %}
|
|
|
|
{% block footer %}
|
|
<footer>
|
|
<p class = "center">
|
|
{{ macros::author_categories(page=page) }}
|
|
</p>
|
|
</footer>
|
|
{% endblock footer %}
|
|
|