37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% include head.html %}
|
|
</head>
|
|
|
|
<body>
|
|
{% include svg.html %}
|
|
<header class="head">
|
|
{% include header.html %}
|
|
{% include nav.html %}
|
|
</header>
|
|
{% include search.html %}
|
|
<section class="margin">
|
|
<div class="content">
|
|
<div class="content_container">
|
|
<article>
|
|
{% if page.featimg %}
|
|
<img class="featimg" src="{{ site.media_folder | prepend: site.baseurl | replace: '//', '/'}}/{{ page.featimg }}" alt="{{ page.featimg }}">
|
|
{% endif %}
|
|
|
|
<h1 class="page_title">
|
|
{{ page.title }}
|
|
</h1>
|
|
<div class="post_content">
|
|
{{ content }}
|
|
</div>
|
|
</article>
|
|
</div>
|
|
<!-- {% include sidebar.html %} -->
|
|
</div>
|
|
</section>
|
|
{% include footer.html %}
|
|
<script src="{{ site.baseurl | replace: '//', '/' }}/js/build/global.min.js"></script>
|
|
</body>
|
|
</html>
|