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

@ -3,6 +3,12 @@
{% block program_content %}
<style>
.fa-select {
font-family: sans-serif, 'FontAwesome';
}
</style>
<div class="btn-group btn-group-justified">
<form method="get" id="filter" class="form-inline">
@ -30,10 +36,10 @@
{% endfor %}
</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>
{% 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 %}
</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 -->
<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 -->
<link href="{% static 'css/bornhack.css' %}" rel="stylesheet">