-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (28 loc) · 872 Bytes
/
index.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
---
layout: base
---
<div class="wrapper">
<header>
{% if site.compass.logo %}
<div class="logo-container">
<a class="logo" href="{{ page.baseurl }}" style="background-image: url('{{ site.baseurl }}{{ site.compass.logo }}')"></a>
</div>
{% endif %}
{% if site.compass.author %}
<div class="author-container"><h1>{{ site.compass.author }}</h1></div>
{% endif %}
{% if site.compass.tagline %}
<div class="tagline-container"><p>{{ site.compass.tagline }}</p></div>
{% endif %}
{% if site.include_jsonld %}
<script type="application/ld+json">{% include me.jsonld %}</script>
{% endif %}
</header>
<main>
{% if site.compass.include_content %}
<div class="content">
{% include content.html %}
</div>
{% endif %}
</main>
</div>