-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.html
36 lines (31 loc) · 976 Bytes
/
post.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{% extends "layout.html" %}
{% block body %}
<!-- Page Header -->
{% set fname = 'img/' + post.img_file %}
<header class="masthead" style="background-image: url('{{ url_for('static', filename=fname) }}')">
<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">You can add subheading here</h2>
<span class="meta">Posted by
<a href="#">Admin</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">
{{post.content}}
</div>
</div>
</div>
</article>
{% endblock %}