summaryrefslogtreecommitdiffstats
path: root/_includes
diff options
context:
space:
mode:
Diffstat (limited to '_includes')
-rw-r--r--_includes/footer_custom.html4
-rw-r--r--_includes/head_custom.html33
-rw-r--r--_includes/nav_footer_custom.html2
-rw-r--r--_includes/navigation.html5
4 files changed, 44 insertions, 0 deletions
diff --git a/_includes/footer_custom.html b/_includes/footer_custom.html
new file mode 100644
index 0000000..a29ea6e
--- /dev/null
+++ b/_includes/footer_custom.html
@@ -0,0 +1,4 @@
+<p class="text-small text-grey-dk-100 mb-0">
+ Written by Justin Gassner.
+ <a href="https://git.jxir.de/site/tree/{{ page.path }}">View Source</a>
+</p>
diff --git a/_includes/head_custom.html b/_includes/head_custom.html
new file mode 100644
index 0000000..365d5f5
--- /dev/null
+++ b/_includes/head_custom.html
@@ -0,0 +1,33 @@
+<link
+ rel="stylesheet"
+ type="text/css"
+ href="{{ '/assets/katex/katex.min.css' | relative_url }}"
+/>
+<link
+ rel="preload"
+ href="{{ '/assets/katex/fonts/KaTeX_Main-Regular.woff2' | relative_url }}"
+ as="font"
+ type="font/woff2"
+ crossorigin
+/>
+<link
+ rel="preload"
+ href="{{ '/assets/katex/fonts/KaTeX_Math-Italic.woff2' | relative_url }}"
+ as="font"
+ type="font/woff2"
+ crossorigin
+/>
+<link
+ rel="preload"
+ href="{{ '/assets/katex/fonts/KaTeX_AMS-Regular.woff2' | relative_url }}"
+ as="font"
+ type="font/woff2"
+ crossorigin
+/>
+<link
+ rel="preload"
+ href="{{ '/assets/katex/fonts/KaTeX_Caligraphic-Regular.woff2' | relative_url }}"
+ as="font"
+ type="font/woff2"
+ crossorigin
+/>
diff --git a/_includes/nav_footer_custom.html b/_includes/nav_footer_custom.html
new file mode 100644
index 0000000..46b6c5d
--- /dev/null
+++ b/_includes/nav_footer_custom.html
@@ -0,0 +1,2 @@
+<footer class="site-footer">
+</footer>
diff --git a/_includes/navigation.html b/_includes/navigation.html
new file mode 100644
index 0000000..ab853aa
--- /dev/null
+++ b/_includes/navigation.html
@@ -0,0 +1,5 @@
+<nav>
+ {% for item in site.data.navigation %}
+ <a href="{{ item.link }}" {% if page.url == item.link %}class="current"{% endif %}>{{ item.name }}</a>
+ {% endfor %}
+</nav>