2015-12-01 08:26:16 +00:00
|
|
|
{% extends 'content_base.html' %}
|
2016-01-24 16:22:13 +00:00
|
|
|
{% load bootstrap %}
|
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 %}
|
2015-12-09 18:18:31 +00:00
|
|
|
<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-04-05 22:07:16 +01:00
|
|
|
<a href="/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-04-05 22:07:16 +01:00
|
|
|
<a href="/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
|
|
|
|
2016-01-24 16:22:13 +00:00
|
|
|
<div class="container">
|
2016-01-24 20:25:29 +00:00
|
|
|
<h2>Contact Me</h2>
|
|
|
|
<p>Send me a message using the form below, please don't spam! Simply click the button below to see the form.</p>
|
2016-01-24 16:22:13 +00:00
|
|
|
<div class="row">
|
2016-01-24 20:25:29 +00:00
|
|
|
<div class="col-xs-12">
|
2016-01-24 16:22:13 +00:00
|
|
|
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
|
2016-01-24 20:25:29 +00:00
|
|
|
<div class="panel {% if sent %}panel-default{% else %}panel-success{% endif %}">
|
2016-01-24 16:22:13 +00:00
|
|
|
<div class="panel-heading" role="tab" id="heading1">
|
|
|
|
<h4 class="panel-title" style="font-size: 21px;">
|
|
|
|
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse1" aria-expanded="false" aria-controls="collapse1">
|
2016-01-24 21:09:17 +00:00
|
|
|
View Form {% if sent %}<i class="icon ion-ios-arrow-down"></i>{% else %}<i class="icon ion-android-done"></i>{% endif %}
|
2016-01-24 16:22:13 +00:00
|
|
|
</a>
|
|
|
|
</h4>
|
|
|
|
</div>
|
|
|
|
<div id="collapse1" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading1">
|
|
|
|
<div class="panel-body">
|
2016-01-24 19:54:57 +00:00
|
|
|
<form role="form" method="post">
|
2016-01-24 16:22:13 +00:00
|
|
|
{% csrf_token %}
|
2016-01-24 20:25:29 +00:00
|
|
|
{{ form | bootstrap }}
|
2016-01-24 16:22:13 +00:00
|
|
|
<div class="form-group">
|
2016-01-24 20:25:29 +00:00
|
|
|
{% if sent %}
|
|
|
|
<button type="submit" class="btn btn-primary">Send</button>
|
|
|
|
{% else %}
|
|
|
|
<button type="button" class="btn btn-success">Already Sent</button>
|
|
|
|
{% endif %}
|
2016-01-24 16:22:13 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-12-09 18:18:31 +00:00
|
|
|
{% endblock %}
|