forked from excentris/compass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (29 loc) · 927 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">
<span
class="logo"
style="background-image: url('{{ site.baseurl }}{{ site.compass.logo }}')"
></span>
</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 %}
<div class="link-list">
<a href="https://github.com/guor8lei" target="_">GitHub</a> ·
<a href="https://www.linkedin.com/in/guor8lei/" target="_">LinkedIn</a> ·
<a href="mailto:[email protected]" target="_">Contact</a>
</div>
</header>
<main>
{% if site.compass.include_content %}
<div class="content">{% include content.html %}</div>
{% endif %}
</main>
</div>