tilde-site/templates/ideas.html

33 lines
616 B
HTML

{% import "macros/opengraph.html" as opengraph_macros %}
{% extends "base.html" %}
{% block stylesheet %}
<link rel="stylesheet" href="{{ config.base_url }}/ideas.css">
{% endblock %}
{% block head_extra %}
{{ opengraph_macros::opengraph(title=page.title, url=page.permalink, content=page.content, type="website") }}
{% endblock %}
{% block content %}
<header>
{% include "includes/site-navigation.html" %}
</header>
<div id="main">
<h1>{{ page.title }}</h1>
{% include "includes/page-navigation.html" %}
{{ page.content |safe }}
</div>
{% include "includes/footer.html" %}
{% endblock content %}