72 lines
2.4 KiB
Plaintext
72 lines
2.4 KiB
Plaintext
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="description" content="
|
|
{% if description %}
|
|
{{ description }}
|
|
{% else %}
|
|
{{ site.description }}
|
|
{% endif %}"
|
|
/>
|
|
<!-- STYLE SHEETS AND FAVICON -->
|
|
<link href="/style.css" rel="stylesheet" />
|
|
<link rel="icon" type="image/x-icon" href="/_media/favicon.png" />
|
|
<!-- GOOGLE FONTS -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans&family=Open+Sans&display=swap" rel="stylesheet">
|
|
<!-- SYNTAX HIGHLIGHTING FONT -->
|
|
<link rel="stylesheet" href="https://unpkg.com/dracula-prism/dist/css/dracula-prism.css">
|
|
<title>{{ title }}</title>
|
|
</head>
|
|
<body class="page--{% if page.fileSlug %}{{ page.fileSlug }}{% endif %}">
|
|
|
|
<div class="header">
|
|
<h1 class="website-title"><i>{{ title }}</i></h1>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="column left">
|
|
<strong>Navigation</strong>
|
|
{% include "partials/nav-list.njk" %}
|
|
</div>
|
|
|
|
<div class="column right content">
|
|
{{ content | safe}}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<div class="f-table-td">
|
|
<strong>Dev</strong>
|
|
<ul>
|
|
<li><a href="htts://github.com/epic-nan">GitHub</a></li>
|
|
<li><a href="htts://gitlab.com/epic-nan">GitLab</a></li>
|
|
<li><a href="https://git.arian.li/arian">Gitea</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="f-table-td" style="border-left: 1px solid #bbb;">
|
|
<strong>Gaming/Socials</strong>
|
|
<ul>
|
|
<li><a href="https://www.swisssmash.ch/players/4994">SwissSmash Profile</a></li>
|
|
<li>Discord: <i>nan6362</i></li>
|
|
<li><a href="https://www.discogs.com/user/epic_nan/collection">Discogs</a></li>
|
|
<li><a href="https://www.setlist.fm/user/nan6362">Setlist.fm</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="f-table-td" style="border-left: 1px solid #bbb;">
|
|
<strong>Public Projects</strong>
|
|
<ul>
|
|
<li><a href="https://arian.li">Personal Homepage</a></li>
|
|
<li><a href="https://uml.arian.li">PlantUML Server</a></li>
|
|
<li><a href="https://paste.arian.li">Wastebin Instance</a></li>
|
|
<li><a href="https://notes.arian.li">[GERMAN] Basislehrjahr-Notizen</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="f-table-td" style="border-left: 1px solid #bbb;">
|
|
<p>© {{ year }} {{ site.author }}</p>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |