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
Raw Permalink Normal View History

2017-09-22 09:46:39 +00:00
<!DOCTYPE HTML>
<!--
Spectral by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
2017-09-22 09:46:39 +00:00
-->
2019-11-14 00:47:15 +00:00
<html lang="en">
2017-09-22 09:46:39 +00:00
{% include head.html %}
<body>
{% include header.html %}
<!-- Main -->
<article id="main">
2019-11-14 02:23:09 +00:00
<header
2017-09-29 11:05:12 +00:00
{% if page.image %}
2019-11-14 02:23:09 +00:00
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 %}');"
2017-09-29 11:05:12 +00:00
{% endif %}
2019-11-14 02:23:09 +00:00
>
2017-09-22 09:46:39 +00:00
<h2>{{ page.title }}</h2>
<p>{{ page.description }}</p>
2017-10-03 15:00:13 +00:00
<p><em>{{ page.date | date: '%B %d, %Y' }}</em></p>
2017-09-22 09:46:39 +00:00
</header>
<section class="wrapper style5">
<div class="inner inner--text">
2017-09-22 09:46:39 +00:00
{{ content }}
</div>
</section>
</article>
{% include footer.html %}
2017-09-29 17:17:07 +00:00
{% include foot-scripts.html %}
2017-09-22 09:46:39 +00:00
</body>
</html>