aboutsummaryrefslogtreecommitdiff
path: root/site/templates
diff options
context:
space:
mode:
Diffstat (limited to 'site/templates')
-rw-r--r--site/templates/default.html48
-rw-r--r--site/templates/pastebin-list.html7
-rw-r--r--site/templates/pastebin.html8
-rw-r--r--site/templates/post-list.html7
-rw-r--r--site/templates/post.html16
5 files changed, 0 insertions, 86 deletions
diff --git a/site/templates/default.html b/site/templates/default.html
deleted file mode 100644
index 2fdf64b..0000000
--- a/site/templates/default.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!doctype html>
-<html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="x-ua-compatible" content="ie=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>$title$ - EuAndreh's blog</title>
- <link rel="stylesheet" href="/css/styles.css" />
- <link rel="alternate" type="application/atom+xml" href="/feed.atom" title="EuAndreh's Feed" />
- </head>
- <body>
- <header>
- <nav>
- <div id="nav-left">
- <a href="/">EuAndreh's blog</a>
- </div>
- <div id="nav-right">
- <a href="/about.html">About</a>
- <a href="/feed.atom">
- <img class="simple-icon" src="/images/atom.svg" alt="Blog feed" />
- </a>
- </div>
- </nav>
- </header>
-
- <main role="main">
- <h1>$title$</h1>
- $body$
- </main>
-
- <footer>
- <ul>
- <li>
- <img class="simple-icon" src="/images/envelope.svg" alt="Envelope icon" />
- <a href="mailto:eu@euandre.org">eu@euandre.org</a>
- </li>
- <li>
- <img class="simple-icon" src="/images/lock.svg" alt="Lock icon" />
- <a href="/public-key.txt">81F90EC3CD356060</a>
- </li>
- </ul>
-
- <p>
- The content for this site is licensed under <a rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/">CC-BY-SA</a>. The <a href="https://git.sr.ht/~euandreh/website">code</a> is <a href="https://git.sr.ht/~euandreh/website/tree/master/LICENSE">GPLv3 or later</a>.
- </p>
- </footer>
- </body>
-</html>
diff --git a/site/templates/pastebin-list.html b/site/templates/pastebin-list.html
deleted file mode 100644
index 4c98c80..0000000
--- a/site/templates/pastebin-list.html
+++ /dev/null
@@ -1,7 +0,0 @@
-<ul>
- $for(pastebins)$
- <li>
- <a href="$url$">$title$</a> - $date$
- </li>
- $endfor$
-</ul>
diff --git a/site/templates/pastebin.html b/site/templates/pastebin.html
deleted file mode 100644
index 7aa2775..0000000
--- a/site/templates/pastebin.html
+++ /dev/null
@@ -1,8 +0,0 @@
-<article>
- <section class="header">
- Posted on $date$
- </section>
- <section>
- $body$
- </section>
-</article>
diff --git a/site/templates/post-list.html b/site/templates/post-list.html
deleted file mode 100644
index c64cdbd..0000000
--- a/site/templates/post-list.html
+++ /dev/null
@@ -1,7 +0,0 @@
-<ul>
- $for(posts)$
- <li>
- <a href="$url$">$title$</a> - $date$
- </li>
- $endfor$
-</ul>
diff --git a/site/templates/post.html b/site/templates/post.html
deleted file mode 100644
index 0ec1efe..0000000
--- a/site/templates/post.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<article>
- <section class="header">
- Posted on $date$
- </section>
- <section>
- $body$
- </section>
- <section>
- <p>Have a comment on this post? Start a discussion
- in my <a href="https://lists.sr.ht/~euandreh/public-inbox">public inbox</a>
- by sending an email to <a href="mailto:~euandreh/public-inbox@lists.sr.ht?Subject=Re%3A%20$title$">~euandreh/public-inbox@lists.sr.ht</a>
- [<a href="https://man.sr.ht/lists.sr.ht/etiquette.md">mailing list etiquette</a>],
- or see <a href="https://lists.sr.ht/~euandreh/public-inbox?search=$title$">existing discussions</a>.
- </p>
- </section>
-</article>