You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{% block head %}
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
<title>Plant Wiki</title>
{% set feathersrc = load_data(url="https://unpkg.com/feather-icons") %}
<script>{{ feathersrc | safe }}</script>
{% block css %}
<link href="{{ get_url(path="style.css", trailing_slashes=false) | safe }}" rel="stylesheet">
{% endblock css %}
{% endblock head %}
</head>
<body>
<ul class="navbar">
<li {% if current_path == "/" %} class="selected" {% endif %}>
<a href="{{ get_url(path="/")}}">Home</a>
</li>
<li {% if current_path == "/plants/" %} class="selected" {% endif %}>
<a href="{{ get_url(path="@/plants/_index.md")}}">Plants</a>
</li>
</ul>
<section class="main">
<div class="container">
{% block content %} {% endblock %}
</div>
</section>
<footer class="footer">
<div class="footer-item float-left">
<a href="https://trivernis.net">My Website</a>
</div>
<div class="footer-item float-right">
<a href="https://git.trivernis.net/trivernis/plantwiki">Source</a>
</div>
</footer>
<script>
feather.replace();
</script>
</body>
</html>