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

51 lines
1.4 KiB
HTML
Raw Normal View History

2015-12-01 08:26:16 +00:00
{% extends 'content_base.html' %}
2016-01-13 17:03:40 +00:00
{% block pageTitle %}About all the things{% endblock %}
2015-12-01 08:26:16 +00:00
{% block content %}
<div class="container">
<div class="panel panel-default">
<div class="panel-body">
2016-01-13 17:03:40 +00:00
There are 2 parts to this, me and my website. Information for both of which can be found using the links below.
2015-12-01 08:26:16 +00:00
</div>
</div>
2015-12-09 18:18:31 +00:00
</div>
<div class="container">
<div class="row">
<div class="col-sm-6">
<div class="thumbnail">
2016-01-13 17:03:40 +00:00
<p class="center-text mega-icon">
<span class="glyphicon glyphicon-hdd" aria-hidden="true"></span>
</p>
2015-12-09 18:18:31 +00:00
<div class="caption">
<h3>About Website</h3>
<p>
2016-01-13 17:03:40 +00:00
Some info about my website, which clearly works well as you're using it right now!
2015-12-09 18:18:31 +00:00
</p>
<p>
2016-01-13 17:12:49 +00:00
<a href="{% url 'pages:about-website' %}" class="btn btn-primary btn-block">More Info</a>
2015-12-09 18:18:31 +00:00
</p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="thumbnail">
2016-01-13 17:03:40 +00:00
<p class="center-text mega-icon">
<span class="glyphicon glyphicon-user" aria-hidden="true"></span>
</p>
2015-12-09 18:18:31 +00:00
<div class="caption">
<h3>About Me</h3>
<p>
2016-01-13 17:12:49 +00:00
Some info about me. Although not very much. Because Privacy!
2015-12-09 18:18:31 +00:00
</p>
<p>
2016-01-13 17:12:49 +00:00
<a href="{% url 'pages:about-me'%}" class="btn btn-primary btn-block">More Info</a>
2015-12-09 18:18:31 +00:00
</p>
</div>
</div>
</div>
</div>
</div>
2016-01-02 23:29:02 +00:00
2015-12-09 18:18:31 +00:00
{% endblock %}