Add basic about page template
This commit is contained in:
parent
03a6736d73
commit
764036c81e
2 changed files with 21 additions and 0 deletions
17
content/pages/about.html
Normal file
17
content/pages/about.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<head>
|
||||
<meta name="url" content="about/" />
|
||||
<meta name="title" content="About" />
|
||||
</head>
|
||||
<body>
|
||||
<section class="bg-primary" id="about">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-lg-offset-2 text-center">
|
||||
<h2 class="section-heading">About</h2>
|
||||
<hr class="light">
|
||||
<p>Start Bootstrap has everything you need to get your new website up and running in no time! All of the templates and themes on Start Bootstrap are open source, free to download, and easy to use. No strings attached!</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</body>
|
|
@ -1,5 +1,9 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block htmltitle %}
|
||||
{{ page.title }}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{{ page.content }}
|
||||
{% endblock %}
|
Reference in a new issue