-
Notifications
You must be signed in to change notification settings - Fork 1
/
record.twig
executable file
·30 lines (26 loc) · 970 Bytes
/
record.twig
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
{% extends 'master.twig' %}
{% block bodyclass %}no-sidebar{% endblock bodyclass %}
{% block banner %}{% endblock banner %}
{% block main %}
<!-- Main Page Content and Sidebar -->
<!-- Main Blog Content -->
<div id="main" class="wrapper style4">
<!-- Content -->
<div id="content" class="container">
<section>
<header class="major">
<h2>No Sidebar</h2>
<span class="byline">Integer sit amet pede vel arcu aliquet pretium</span>
</header>
<p>{{ record.teaser }}</p>
<p>{{ record.body }}</p>
<p>{{ record.teaser }}</p>
</section>
</div>
</div>
<!-- End Main Content -->
</div>
<!-- Team -->
{% include '_team.twig' %}
<!-- End Main Content and Sidebar -->
{% endblock main %}