1
0
weblog/_layouts/post.html
JackCarterSmith 64f91ff50b
All checks were successful
Build Jekyll weblog / build (push) Successful in 2s
Initial commit
2023-09-02 18:55:02 +02:00

34 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
{% include page-head.html %}
<body>
{% include header.html %}
<div id="main" class="container main">
<div class="row">
<div id="my-article" class="col-sm-9">
<div class="post-area post">
<header>
<h1>{{ page.title }}</h1>
<p>{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</p>
</header>
<hr>
<article>
{{ content }}
</article>
<hr>
</div>
</div>
<div id="content" class="col-sm-3">
<div id="my-affix" class="hidden-xs">
<div class="categories-list-header">
Contents
</div>
<div class="content-text"></div>
</div>
</div>
</div>
</div>
{% include footer.html %}
</body>
</html>