-
Notifications
You must be signed in to change notification settings - Fork 6
/
_content.html
33 lines (23 loc) · 1.21 KB
/
_content.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{% import "_macros.html" as macros with context %}
{% block content %}
<div id="content-wrapper">
<div id="content-container">
<div class="row bylines-container bylines-top">
<div class="col-xs-10 col-xs-offset-1">
{% for byline_row in bylines | filter('byline_position', 'top') %}
<div class="byline">{{ byline_row.role_prefix }} {% if byline_row.link %} <a href="{{ byline_row.link }}" target="_blank"> {% endif %} {{ byline_row.name }} {% if byline_row.link %} </a> {% endif %} {% if byline_row.miscellaneous %} {{ byline_row.miscellaneous }} {% endif %}</div>
{% endfor %}
</div>
</div>
{# Call loop to build content blocks #}
{{ macros.build_content(content, right_rail, images) }}
<div class="row bylines-container bylines-bottom">
<div class="col-xs-10 col-xs-offset-1">
{% for byline_row in bylines | filter('byline_position', 'bottom') %}
<div class="byline">{{ byline_row.role_prefix }} {% if byline_row.link %} <a href="{{ byline_row.link }}" target="_blank"> {% endif %} {{ byline_row.name }} {% if byline_row.link %} </a> {% endif %} {% if byline_row.miscellaneous %} {{ byline_row.miscellaneous }} {% endif %}</div>
{% endfor %}
</div>
</div>
</div>
</div>
{% endblock %}