summaryrefslogtreecommitdiff
path: root/templates/base.twig
blob: 825c09c1b8a45b1f97b80ea7a864f26ac099cfe8 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{% extends 'root.twig' %}

{% block css %}
  {{ parent() }}
  <!-- SimpleCSS -->
  <link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.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">
  <!-- Splide -->
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@splidejs/splide@latest/dist/css/splide.min.css">

  <!-- override -->
  <link rel="stylesheet" href="/css/style.css"/>
{% endblock %}

{% block js %}
  {{ parent() }}
  <!-- Splide -->
  <script src="https://cdn.jsdelivr.net/npm/@splidejs/splide@latest/dist/js/splide.min.js"></script>
  <script src="/js/splides.js"></script>

  <!-- nav -->
  <script src="/js/nav_highlight.js"></script>
{% endblock %}

{% block body %}
  <header>
    <nav>
      <a href="/dashboard">Dashboard</a>
      <a href="/card">Cards</a>
      <!--
      <a href="/events">Events</a>
      -->
      <!--
      <a href="/news">News</a>
      -->
      <a href="https://gitlab.com/DRogueRonin/elements" target="_blank">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" target="_blank">Gitlab</a>
  </footer>
{% endblock %}