stack-wallet-website/_layouts/post.html

30 lines
814 B
HTML
Raw Normal View History

2022-08-13 23:14:12 +00:00
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
<main>
{% include header.html %}
<section class="blog-section">
<div class="container">
<div class="row">
<div class="col post-page">
<div class="post-meta">
<p class="post-date">{{page.date | date: '%B %d, %Y'}}</p>
<p class="post-author">{{page.author}}</p>
</div>
2023-04-29 00:40:57 +00:00
<h1>{{page.title}}</h1>
2022-08-13 23:14:12 +00:00
<div class="post-body">
{{content}}
</div>
</div>
</div>
</div>
</section>
{% include footer.html %}
</main>
</body>
</html>