summaryrefslogtreecommitdiff
path: root/src/_layouts/language-war.html
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2021-02-05 09:55:25 +0100
committerPatrick Spek <p.spek@tyil.nl>2021-02-05 09:55:25 +0100
commit70a2c42a5eef1dab2b7ab75e3c7f6ffc8c8c1959 (patch)
treec30a3e1d52e7a92fe3866f9833aa77ac4092eef4 /src/_layouts/language-war.html
parent1d60b596b53202c0814663ed53b4279b40e05154 (diff)
Move source files into src
Diffstat (limited to 'src/_layouts/language-war.html')
-rw-r--r--src/_layouts/language-war.html40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/_layouts/language-war.html b/src/_layouts/language-war.html
new file mode 100644
index 0000000..31f1085
--- /dev/null
+++ b/src/_layouts/language-war.html
@@ -0,0 +1,40 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head lang="en">
+ {% include head.html %}
+ <link rel="stylesheet" type="text/css" href="{{ "/css/language-war.css" | prepend: site.baseurl }}" />
+ </head>
+ <body>
+ {% include header.html %}
+ <article>
+ <main>
+ {{ content }}
+ </main>
+ <footer>
+ <p class="text-center">
+ <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">
+ <img alt="Creative Commons License" style="border-width:0" src="{{ "/img/cc-by-sa.png" | prepend: site.baseurl }}" />
+ </a>
+ </p>
+ {% if page.authors %}
+ <p>
+ This <span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" rel="dct:type">work</span> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.
+ You can freely modify and redistribute this work as long as attribution to the author(s) remains:
+ </p>
+ <ul>
+ {% for author in page.authors %}
+ <li>
+ {% if author[1] %}
+ <a xmlns:cc="http://creativecommons.org/ns#" href="{{ author[1] }}" property="cc:attributionName" rel="cc:attributionURL">{{ author[0] }}</a>
+ {% else %}
+ {{ author[0] }}
+ {% endif %}
+ </li>
+ {% endfor %}
+ </ul>
+ {% endif %}
+ </footer>
+ </article>
+ {% include footer.html %}
+ </body>
+</html>