mirror of
https://github.com/spice2x/spice2x.github.io.git
synced 2026-08-02 06:40:42 -07:00
28 lines
752 B
HTML
28 lines
752 B
HTML
---
|
|
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 %}
|
|
</header>
|
|
<main>
|
|
{% if site.compass.include_content %}
|
|
<div class="content">
|
|
{% include content.html %}
|
|
</div>
|
|
{% endif %}
|
|
</main>
|
|
</div>
|