2020-12-16 17:36:29 +00:00
|
|
|
{% extends 'layouts/base.html' %}
|
|
|
|
|
|
|
|
{% block title %}Branches{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Branches</h1>
|
2020-12-17 07:12:26 +00:00
|
|
|
{% for branch in branches %}
|
|
|
|
<div class="row song-row branch-{{ branch.acronym }}">
|
|
|
|
<div class="col col-md-3">
|
|
|
|
{% if branch.logo %}
|
|
|
|
<img src="{{ branch.logo.url }}" class="img-fluid">
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<div class="col col-md-9">
|
|
|
|
<div class="row h-100 align-items-center">
|
|
|
|
<p class="h2"><a href="/taxonomy/branches/{{ branch.acronym }}">{{ branch.name }} [{{ branch.acronym }}]</a></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
2020-12-16 17:36:29 +00:00
|
|
|
{% endblock %}
|