summaryrefslogtreecommitdiff
path: root/templates/base.twig
blob: 758b6f84f4f0e80ad54c68f4e967d7fe14e60e17 (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
31
32
{% extends 'root.twig' %}

{% block css %}
  {{ parent() }}
  <!-- SimpleCSS -->
  <link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">

  <link rel="stylesheet" href="/css/style.css"/>

  <!-- Fork Awesome Icons -->
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.2.0/css/fork-awesome.min.css" integrity="sha256-XoaMnoYC5TH6/+ihMEnospgm0J1PM/nioxbOUdnM8HY=" crossorigin="anonymous">
{% endblock %}

{% block body %}
  <header>
    <nav>
      <a href="/dashboard">Dashboard</a>
      <a href="/card/list">Cards</a>
      <a href="/events/list">Events</a>
      <a href="/news/list">News</a>
      <a href="https://gitlab.com/DRogueRonin/elements">Gitlab</a>
    </nav>
    <h1>Elements</h1>
    <p>{% block subtitle %}{% endblock %}</p>
  </header>
  <main>
    {% block main %}{% endblock %}
  </main>
  <footer>
    visit <a href="https://gitlab.com/DRogueRonin/elements">Gitlab</a>
  </footer>
{% endblock %}