Echo Writes Code

_base.tera.html

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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!doctype html>

<html lang="en-US">
	<head>
		<meta charset="utf-8">
		<meta name="viewport" content="width=device-width,initial-scale=1">
		<title>{% block title %}{% endblock %} | {{ site.name }}</title>
		<link rel="stylesheet" href="/static/stylesheets/theme.css">
		{% block feed %}
		<link rel="alternate" type="application/atom+xml" href="{{ site.link | safe }}atom.xml">
		{% endblock %}
	</head>
	<body>
		<header id="site-header">
			<div id="site-link">
				<a href="/">{{ site.name }}</a>
			</div>
			<nav id="site-menu">
				<div class="ge-large-screen">
					<ul class="wide-menu">
						{% for item in site.menu %}
              <li>
                {% if item.link %}
                  <a href="{{ item.link }}">{{ item.name }}</a>
                {% elif item.menu %}
                  <details name="site-menu-item">
                    <summary>{{ item.name }}</summary>
                    <ul class="submenu">
                      {% for subitem in item.menu %}
                        <li><a href="{{ subitem.link }}">{{ subitem.name }}</a></li>
                      {% endfor %}
                    </ul>
                  </details>
                {% endif %}
              </li>
						{% endfor %}
					</ul>
				</div>
				<div class="le-medium-screen">
					<details class="narrow-menu">
						<summary>Menu</summary>
            <ul>
              {% for item in site.menu %}
                  {% if item.link %}
                    <li><a href="{{ item.link }}">{{ item.name }}</a></li>
                  {% elif item.menu %}
                    <li class="section-heading">{{ item.name }}</li>
                    {% for subitem in item.menu %}
                      <li><a href="{{ subitem.link }}">{{ subitem.name }}</a></li>
                    {% endfor %}
                  {% endif %}
                </li>
              {% endfor %}
						</ul>
					</details>
				</div>
			</nav>
		</header>
		<main>
			{% block content %}{% endblock %}
		</main>
		<footer id="site-footer">
			<p>
      <a href="/atom.xml">Atom feed</a> • Powered by <a href="https://git.echowritescode.dev/repository/web-pylon/head">web-pylon</a> v{{ site.version }} • <span class="motp">{{ site.motp | safe }}</span></p>
			</p>
      <hr>
			<p>
				The font used on most of this website is the
				<span class="latex">L<span class="latex-a">A</span>T<span class="latex-e">E</span>X</span>
				font, <a href="https://www.fontsquirrel.com/fonts/computer-modern">Computer Modern by Donald E. Knuth et. al.</a>
				It is used under the terms of the <a href="/static/fonts/cmu/SIL%20Open%20Font%20License.txt">SIL Open Font License</a>.
			</p>
      <hr>
			<p>
				I live in Vancouver, Canada, which occupies the unceded ancestral lands of
				<a href="https://www.musqueam.bc.ca/">xʷməθkʷəy̓əm (Musqueam)</a>,
				<a href="https://www.squamish.net/">Sḵwx̱wú7mesh Úxwumixw (Squamish Nation)</a>, and
				<a href="https://twnation.ca/">səlilwətaɬ (Tsleil-Waututh Nation)</a>. Please visit their
				websites to learn more about each group, and especially if you live in Canada or the US, please
				consider donating some time or money to them or to your local Indigenous group(s) if you are
				able. Thanks!
			</p>
		</footer>
		{% block scripts %}{% endblock %}
    <script src="/static/scripts/details-element.js"></script>
	</body>
</html>