add fontawesome and begin work on adding icons on schedule

Also deletes an old 2016 info html page and removes tabs in
bornhack-2016_camp_detail.html
This commit is contained in:
Stephan Telling 2017-03-14 22:14:37 +01:00
parent d159844750
commit 8ddf21ba48
No known key found for this signature in database
GPG key ID: D4892289F36ADA9B
11 changed files with 2720 additions and 1410 deletions

View file

@ -4,57 +4,57 @@
{% load imageutils %} {% load imageutils %}
{% block content %} {% block content %}
<div class="row"> <div class="row">
<div class="col-md-12"> <div class="col-md-12">
<img src="{% static camp.logo_large %}" class="img-responsive" id="front-logo" /> <img src="{% static camp.logo_large %}" class="img-responsive" id="front-logo" />
<br /> <br />
<div class="col-md-8 text-container"> <div class="col-md-8 text-container">
<div class="lead"> <div class="lead">
<strong>Bornhack 2016</strong> was the first BornHack. It took place from <strong>August 27 to September 3rd 2016</strong> on the Danish island of Bornholm. The tagline of this event was <strong>Initial Commit</strong>. <strong>Bornhack 2016</strong> was the first BornHack. It took place from <strong>August 27 to September 3rd 2016</strong> on the Danish island of Bornholm. The tagline of this event was <strong>Initial Commit</strong>.
</div> </div>
</div> </div>
<div class="col-md-4"> <div class="col-md-4">
{% thumbnail 'img/bornhack-2016/esbjerg' '1600x988-B12A2612.jpg' 'A quiet moment in the chillout area by the bar' %} {% thumbnail 'img/bornhack-2016/esbjerg' '1600x988-B12A2612.jpg' 'A quiet moment in the chillout area by the bar' %}
</div> </div>
</div> </div>
</div> </div>
<br /> <br />
<div class="row"> <div class="row">
<div class="col-md-4"> <div class="col-md-4">
{% thumbnail 'img/bornhack-2016/fonsmark' 'FB1_5128.JPG' 'Emma Holten speaking at BornHack 2016' %} {% thumbnail 'img/bornhack-2016/fonsmark' 'FB1_5128.JPG' 'Emma Holten speaking at BornHack 2016' %}
</div> </div>
<div class="col-md-8 text-container"> <div class="col-md-8 text-container">
<div class="lead"> <div class="lead">
With <strong>3 keynotes, 38 talks, and 9 workshops</strong> we had an ambitious program which was well received by participants. We also had an <strong>amazing list of sponsors</strong> making the event financially possible. With <strong>3 keynotes, 38 talks, and 9 workshops</strong> we had an ambitious program which was well received by participants. We also had an <strong>amazing list of sponsors</strong> making the event financially possible.
</div> </div>
</div> </div>
</div> </div>
<br /> <br />
<div class="row"> <div class="row">
<div class="col-md-8 text-container"> <div class="col-md-8 text-container">
<p class="lead">Many of the speakers and keynotes were present for the <strong>full week</strong>, providing participants with <strong>ample opportunity to discuss projects and exchange ideas</strong>.</p> <p class="lead">Many of the speakers and keynotes were present for the <strong>full week</strong>, providing participants with <strong>ample opportunity to discuss projects and exchange ideas</strong>.</p>
</div> </div>
<div class="col-md-4"> <div class="col-md-4">
{% thumbnail 'img/bornhack-2016/fonsmark' 'FB1_5149.JPG' 'Danish politicians debating at BornHack 2016' %} {% thumbnail 'img/bornhack-2016/fonsmark' 'FB1_5149.JPG' 'Danish politicians debating at BornHack 2016' %}
</div> </div>
</div> </div>
<br /> <br />
<div class="row"> <div class="row">
<div class="col-md-4"> <div class="col-md-4">
{% thumbnail 'img/bornhack-2016/esbjerg' '1600x988-B12A2631.jpg' 'The BornHack 2016 organiser team' %} {% thumbnail 'img/bornhack-2016/esbjerg' '1600x988-B12A2631.jpg' 'The BornHack 2016 organiser team' %}
</div> </div>
<div class="col-md-8 text-container"> <div class="col-md-8 text-container">
<div class="lead"> <div class="lead">
The team behind BornHack 2016 had <strong>a lot of help</strong> from volunteer participants when it was needed. We are <strong>very grateful</strong> and will repay the kindness by continuing to organise awesome events. The team behind BornHack 2016 had <strong>a lot of help</strong> from volunteer participants when it was needed. We are <strong>very grateful</strong> and will repay the kindness by continuing to organise awesome events.
</div> </div>
</div> </div>
</div> </div>
{% endblock content %} {% endblock content %}

View file

@ -3,6 +3,12 @@
{% block program_content %} {% block program_content %}
<style>
.fa-select {
font-family: sans-serif, 'FontAwesome';
}
</style>
<div class="btn-group btn-group-justified"> <div class="btn-group btn-group-justified">
<form method="get" id="filter" class="form-inline"> <form method="get" id="filter" class="form-inline">
@ -30,10 +36,10 @@
{% endfor %} {% endfor %}
</select> </select>
<select id="location" name="location" class="form-control filter-control"> <select id="location" name="location" class="fa-select form-control filter-control">
<option value="">All Locations</option> <option value="">All Locations</option>
{% for loc in camp.event_locations %} {% for loc in camp.event_locations %}
<option value="{{ loc.slug }}" {% if location and location == loc %}selected{% endif %}>{{ loc.name }}</option> <option value="{{ loc.slug }}" {% if location and location == loc %}selected{% endif %}>{{ loc.icon }} {{ loc.name }}</option>
{% endfor %} {% endfor %}
</select> </select>

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 434 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load diff

View file

@ -15,6 +15,9 @@
<!-- Bootstrap core CSS --> <!-- Bootstrap core CSS -->
<link href="{% static 'css/bootstrap.min.css' %}" rel="stylesheet"> <link href="{% static 'css/bootstrap.min.css' %}" rel="stylesheet">
<!-- FontAwesome CSS -->
<link href="{% static 'css/font-awesome.min.css' %}" rel="stylesheet">
<!-- Custom styles for this template --> <!-- Custom styles for this template -->
<link href="{% static 'css/bornhack.css' %}" rel="stylesheet"> <link href="{% static 'css/bornhack.css' %}" rel="stylesheet">