summaryrefslogtreecommitdiff
path: root/app/templates/base.html
blob: 0b53b5c6d23a147318ed2f7a0a68f67c96347cb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{# -*- mode: jinja2; -*- #}

<!doctype html>

<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to">
    <title>Farm Manager</title>
    <meta name="author" content="Marius Peter">
    <meta name="description" content="A draft page for Farm Manager.">
    <!-- <link rel="icon" href="/favicon.ico"> -->
    <link rel="stylesheet" href="{{ url_for('static', filename='styles/style.css') }}">
  </head>
  <body>
    <nav>
      <a href="/" class="button">Home</a>
      <h1>{% block title %}{% endblock %}</h1>
      <ul>
	{% for module in modules %}
	  <li><a href="/module/{{ module.name }}" class="button">{{ module.name }}</a></li>
	{% endfor %}
      </ul>
    </nav>
    <div id="content">
      {% block content %}{% endblock %}
    </div>
    <!-- <script src="js/scripts.js"></script> -->
  </body>
</html>
Copyright 2019--2024 Marius PETER