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/page.html

33 lines
787 B
HTML

<!DOCTYPE HTML>
<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>
</header>
<section class="wrapper style5">
<div class="inner">
{{ content }}
</div>
</section>
</article>
{% include footer.html %}
{% include foot-scripts.html %}
</body>
</html>