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.
50 lines
1.3 KiB
HTML
50 lines
1.3 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>
|
|
<meta name="description" content="I put my houseplants here." />
|
|
|
|
{% 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="{{ get_url(path="@/license.md") }}">License</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> |