mirror of
https://github.com/adulau/art.git
synced 2024-11-22 10:07:08 +00:00
36 lines
609 B
HTML
36 lines
609 B
HTML
<!DOCTYPE html>
|
|
<!--
|
|
Forty by HTML5 UP
|
|
html5up.net | @ajlkn
|
|
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
|
-->
|
|
<html>
|
|
|
|
{% include head.html %}
|
|
|
|
<body>
|
|
|
|
{% include header.html %}
|
|
|
|
|
|
<!-- Main -->
|
|
<div id="main" class="alt">
|
|
|
|
<!-- One -->
|
|
<section id="one">
|
|
<div class="inner">
|
|
<header class="major">
|
|
<h1>{{ page.title }}</h1>
|
|
</header>
|
|
{% if page.image %}<span class="image main"><img src="{{ site.baseurl }}/{{ page.image }}" alt="" /></span>{% endif %}
|
|
{{ content }}
|
|
</div>
|
|
</section>
|
|
|
|
</div>
|
|
|
|
{% include footer.html %}
|
|
|
|
</body>
|
|
|
|
</html>
|