This repository has been archived on 2023-02-03. You can view files and clone it, but cannot push or open issues or pull requests.
autonomic.zone/src/_layouts/post.html

41 lines
1007 B
HTML

<!DOCTYPE HTML>
<!--
Spectral by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html lang="en">
{% include head.html %}
<body>
{% include header.html %}
<!-- Main -->
<article id="main">
<header
{% if page.image %}
style="background-image: url('{% if site.featured-image-source %}{{ page.image | prepend: site.featured-image-source | absolute_url }}{% else %}{{ "" | absolute_url }}/assets/images/{{ page.image }}{% endif %}');"
{% endif %}
>
<h2>{{ page.title }}</h2>
<p>{{ page.description }}</p>
<p><em>{{ page.date | date: '%B %d, %Y' }}</em></p>
</header>
<section class="wrapper style5">
<div class="inner inner--text">
{{ content }}
</div>
</section>
</article>
{% include footer.html %}
{% include foot-scripts.html %}
</body>
</html>