forked from haris989/Python-Flask-Blog
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathabout.html
More file actions
27 lines (25 loc) · 832 Bytes
/
about.html
File metadata and controls
27 lines (25 loc) · 832 Bytes
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
{% extends "layout.html" %}
{% block body %}
<!-- Page Header -->
<header class="masthead" style="background-image: url('{{ url_for('static', filename='img/about-bg.jpg') }}')">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<div class="page-heading">
<h1>About Me</h1>
<span class="subheading">I am Harry and Coding is my Favourite Sports. Read Below to Know More About Me.. </span>
</div>
</div>
</div>
</div>
</header>
<!-- Main Content -->
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<p>{{params['about_text']}}</p>
</div>
</div>
</div>
{% endblock %}