all repos — homestead @ 4cdd583a5ce9428a3e5211213fc44b09fddba618

Code for my website

Replace zola with DOM-based static site generation code

Alan Pearce
commit

4cdd583a5ce9428a3e5211213fc44b09fddba618

parent

234c9eadf1e7965fc3a6a669696ddae5e2c4ef11

1 file changed, 37 insertions(+), 0 deletions(-)

changed files
A templates/404.html
@@ -0,0 +1,37 @@
+<!doctype html> +<html> + <head> + <meta charset="utf-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <title>Site Title</title> + <meta name="referrer" content="no-referrer-when-downgrade" /> + <link + rel="alternate" + type="application/atom+xml" + title="" + href="/atom.xml" + /> + <style></style> + </head> + <body> + <a class="skip" href="#main">Skip to main content</a> + <header> + <h2> + <a href="/" class="title">Site title</a> + </h2> + <nav> + <a href="/">Home</a> + </nav> + </header> + <main id="main"> + <h1>404</h1> + <h2>ʕノ•ᴥ•ʔノ ︵ ┻━┻</h2> + </main> + <footer> + Licensed under a + <a rel="license" href="http://creativecommons.org/licenses/by/4.0/" + >Creative Commons Attribution 4.0 International License</a + >. + </footer> + </body> +</html>