58 lines
1.4 KiB
HTML
58 lines
1.4 KiB
HTML
{% include head.html %}
|
|
|
|
|
|
<body>
|
|
|
|
<div class="site-ctr">
|
|
<!-- Navbar -->
|
|
{% include nav.html %}
|
|
<!-- <div style="height:5vh"></div> -->
|
|
|
|
<!-- Header -->
|
|
<!-- <div class="header">
|
|
<div class="container">
|
|
<div class="content">
|
|
</div>
|
|
</div>
|
|
<div class="header-gap"></div>
|
|
</div> -->
|
|
|
|
<div class="reactive-bg">
|
|
<div class="post container">
|
|
<h1>{{page.title}}
|
|
|
|
</h1>
|
|
<h4>{{page.description}}
|
|
|
|
</h4>
|
|
<hr>
|
|
<p>
|
|
<em>
|
|
<!-- Date -->
|
|
{{page.date}}
|
|
|
|
<!-- Mini post -->
|
|
{% if page.is_short %}
|
|
<span class="badge badge-secondary">Mini Post</span>
|
|
{% endif %}
|
|
|
|
<!-- Permalink -->
|
|
{% if page.redirect_from %}
|
|
<a href="{{site.baseurl}}{{page.redirect_from[0]}}"><i class="fas fa-link"></i></a>
|
|
{% endif %}
|
|
</em>
|
|
|
|
</p>
|
|
|
|
<br>
|
|
|
|
{{content}}
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
{% include advert.html %}
|
|
{% include footer.html %}
|
|
|
|
|
|
</body> |