100-Days-Of-Code/Visual Studio Code Projects/startbootstrap-clean-blog-gh-pages/templates/post.html
2025-06-17 12:53:06 +05:30

36 lines
890 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% include "header.html" %}
<!-- Page Header -->
<header class="masthead" style="background-image: url('{{post.image_url}}')">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<div class="post-heading">
<h1>{{post.title}}</h1>
<h2 class="subheading">{{post.subtitle}}</h2>
<span class="meta">Posted by
<a href="#">{{post.author}}</a>
on {{post.date}}</span>
</div>
</div>
</div>
</div>
</header>
<!-- Post Content -->
<article>
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<p>
{{post.body}}
</p>
</div>
</div>
</div>
</article>
<hr>
{% include "footer.html" %}