52 lines
2.1 KiB
HTML
52 lines
2.1 KiB
HTML
{% set nav = {
|
|
"Home": "index.html",
|
|
"Installation": "install.html",
|
|
"FAQ": "faq.html",
|
|
"Privacy Policy": "privacy.html",
|
|
} %}
|
|
<!doctype html>
|
|
<html class="no-js" lang="en" dir="ltr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Syng.Rocks</title>
|
|
<link rel="stylesheet" href="css/foundation.min.css">
|
|
<link rel="stylesheet" href="css/app.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="top-content-section">
|
|
<div class="title-bar" style="background: transparent" data-responsive-toggle="main-menu" data-hide-for="medium">
|
|
<button class="menu-icon" type="button" data-toggle="main-menu"></button>
|
|
<div class="title-bar-title">Menu</div>
|
|
</div>
|
|
<div class="top-bar" id="main-menu" style="background: unset;">
|
|
<div class="top-bar-left">
|
|
<ul class="menu">
|
|
<li class="menu-text"><img src="images/rocks.syng.Syng.png" alt="Syng.Rocks! Logo" height=30></li>
|
|
{% for name, url in nav.items() %}
|
|
<li><a href="{{ url }}">{{ name }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
<div class="top-bar-right">
|
|
<ul class="menu">
|
|
<li><a href="https://matrix.to/#/#syng:matrix.org" target="_blank"><img alt="Matrix" src="images/matrix.svg" style="max-height:24px;"></a></li>
|
|
<li><a href="https://floss.social/@syng" target="_blank"><img alt="Mastodon" src="images/mastodon.svg" style="max-height:24px;"></a></p></li>
|
|
<li><a href="https://github.com/christofsteel/syng" target="_blank"><img alt="Github" src="images/github.svg" style="max-height:24px; max-width:24px"></a></p></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{ header }}
|
|
{{ content }}
|
|
|
|
|
|
<script src="js/vendor/jquery.js"></script>
|
|
<script src="js/vendor/what-input.js"></script>
|
|
<script src="js/vendor/foundation.min.js"></script>
|
|
<script src="js/app.js"></script>
|
|
</body>
|
|
</html>
|