Newer
Older
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
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en-us">
{% include head.html %}
<body>
{% include nav.html %}
<header class="intro-header" >
<div class="container-fluid container-bg">
<div class="row">
<div class="odk-logo" >
<a href="{{ site.baseurl }}/">
<img class="img-responsive" src="{{ site.baseurl }}/public/logos/kwarc-logo-transparent.jpg" alt="KWARC logo" />
</a>
</div>
<div class="site-heading">
{% if page.layout == "post" %}
<h1>{{ page.title }}</h1>
{% if page.subtitle %}<h2 class="subheading" >{{ page.subtitle }}</h2>{% endif %}
{% else %}
<h1>{{site.tagline}}</h1>
{% endif %}
</div>
</div>
</div>
</header>
<div class="container main-content" >
{{ content }}
</div>
{% include footer.html %}
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="{{ site.baseurl }}/public/{{ site.bootstrap }}/js/bootstrap.min.js"></script>
</body>
<!--
Built: {{ site.time }}
Commit: {{ site.github.build_revision }}
-->
</html>