aboutsummaryrefslogtreecommitdiff
path: root/templates/layouts/main.django
blob: fa49a67cc2870264175e8ec8da095ed5cbcf778d (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
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>{{ Title }} - Eda</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    {% block head %}

    {% endblock %}
  </head>
  <body>
    {% include 'partials/navbar.django' %}
    <main>
      <aside class="sidebar">
        {% include 'partials/sidebar.django' %}
      </aside>
      <section class="content">
        {% block content %}

        {% endblock %}
      </section>
    </main>

    <footer>
      <p>
        &copy; 2025 Eda. Eda is an <a href="https://github.com/luciferreeves/eda" target="_blank" rel="noopener noreferrer">open-source</a> alternative <a href="https://www.github.com/" target="_blank" rel="noopener noreferrer">GitHub</a> frontend created by <a href="https://shi.foo" target="_blank" rel="noopener noreferrer">@luciferreeves</a>. All rights reserved.
      </p>
    </footer>
  </body>
  {% block scripts %}

  {% endblock %}
</html>