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:
parent
d159844750
commit
8ddf21ba48
|
@ -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>
|
||||
|
||||
|
|
4
src/static_src/css/font-awesome.min.css
vendored
Normal file
4
src/static_src/css/font-awesome.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
src/static_src/fonts/FontAwesome.otf
Normal file
BIN
src/static_src/fonts/FontAwesome.otf
Normal file
Binary file not shown.
BIN
src/static_src/fonts/fontawesome-webfont.eot
Normal file
BIN
src/static_src/fonts/fontawesome-webfont.eot
Normal file
Binary file not shown.
2671
src/static_src/fonts/fontawesome-webfont.svg
Normal file
2671
src/static_src/fonts/fontawesome-webfont.svg
Normal file
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 434 KiB |
BIN
src/static_src/fonts/fontawesome-webfont.ttf
Normal file
BIN
src/static_src/fonts/fontawesome-webfont.ttf
Normal file
Binary file not shown.
BIN
src/static_src/fonts/fontawesome-webfont.woff
Normal file
BIN
src/static_src/fonts/fontawesome-webfont.woff
Normal file
Binary file not shown.
BIN
src/static_src/fonts/fontawesome-webfont.woff2
Normal file
BIN
src/static_src/fonts/fontawesome-webfont.woff2
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load diff
|
@ -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">
|
||||
|
||||
|
|
Loading…
Reference in a new issue