1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/templates/about/index.html
2015-10-19 13:04:49 +01:00

49 lines
1.4 KiB
HTML

{% extends 'base.html' %}
{% block htmltitle %}About{% endblock %}
{% block headercontent %}
<div class="row">
<h1>About all the things</h1>
</div>
<div class="row">
<h4>So, who and/or what am I exactly? Let's find out...</h4>
</div>
{% endblock %}
{% block content%}
<div class="container">
<p>
There are 2 parts to this, me and my website. Information for both of which is below.
</p>
</div>
<div class="container">
<div class="row center-text">
<div class="col-sm-6">
<div class="thumbnail panel-primary">
<p class="center-text mega-icon">
<span class="glyphicon glyphicon-user" aria-hidden="true"></span>
</p>
<div class="caption">
<h3>About Me</h3>
<p></p>
<p><a href="#" class="btn btn-primary btn-block btn-lg" role="button">Find out more</a></p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="thumbnail panel-primary">
<p class="center-text mega-icon">
<span class="glyphicon glyphicon-hdd" aria-hidden="true"></span>
</p>
<div class="caption">
<h3>About the website</h3>
<p></p>
<p><a href="#" class="btn btn-primary btn-block btn-lg" role="button">Find out more</a></p>
</div>
</div>
</div>
</div>
</div>
{% endblock %}