30 lines
675 B
HTML
30 lines
675 B
HTML
|
{% import "macros/opengraph.html" as opengraph_macros %}
|
||
|
|
||
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block stylesheet %}
|
||
|
<link rel="stylesheet" href="{{ config.base_url }}/project-spg.css">
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block head_extra %}
|
||
|
{{ opengraph_macros::opengraph(title=page.title, url=page.permalink, content=page.content, type="website", image=config.base_url ~ "/img/project-spg/%5BMCS-003%5D%20Window%20to%20the%20Fire.png") }}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<header>
|
||
|
<h1>{{ page.title }}</h1>
|
||
|
<nav>
|
||
|
{% include "includes/list-pages.html" %}
|
||
|
</nav>
|
||
|
</header>
|
||
|
|
||
|
<div id="main">
|
||
|
|
||
|
{{ page.content |safe }}
|
||
|
|
||
|
</div>
|
||
|
|
||
|
{% include "includes/footer.html" %}
|
||
|
{% endblock content %}
|