summaryrefslogtreecommitdiff
path: root/template
diff options
context:
space:
mode:
authorVincent Douillet <vincent@vdouillet.fr>2021-10-11 23:03:07 +0200
committerVincent Douillet <vincent@vdouillet.fr>2021-10-11 23:03:07 +0200
commit6ee862efd612832e88b154105afe4715fd1cc78b (patch)
treef3e4d2be1615d9e37a9a120b18bee6aa3bbadf6a /template
first commit
Diffstat (limited to 'template')
-rw-r--r--template/back.html1
-rw-r--r--template/footer.html4
-rw-r--r--template/header.html26
-rw-r--r--template/index.html8
4 files changed, 39 insertions, 0 deletions
diff --git a/template/back.html b/template/back.html
new file mode 100644
index 0000000..bb16a7a
--- /dev/null
+++ b/template/back.html
@@ -0,0 +1 @@
+<p class="noprint"><a href="/">&lt; back to homepage</a></p>
diff --git a/template/footer.html b/template/footer.html
new file mode 100644
index 0000000..332550f
--- /dev/null
+++ b/template/footer.html
@@ -0,0 +1,4 @@
+ <hr/>
+ <footer>
+ <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a> <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png" /></a>
+ </footer>
diff --git a/template/header.html b/template/header.html
new file mode 100644
index 0000000..33d468b
--- /dev/null
+++ b/template/header.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html lang="en">
+<meta charset="utf-8">
+<meta name="viewport" content="width=device-width, initial-scale=1">
+<title>blog.vdouillet.fr</title>
+<style>
+ @media (prefers-color-scheme: dark){
+ body {color:#fff;background:#000}
+ a:link {color:#9cf}
+ a:hover, a:visited:hover {color:#cef}
+ a:visited {color:#c9f}
+ }
+ body{
+ margin:1em auto;
+ max-width:40em;
+ padding:0 .62em;
+ font:1.2em/1.62 sans-serif;
+ }
+ h1,h2,h3{line-height:1.2}
+ footer{text-align:center}
+ pre{overflow-x:auto}
+ @media print{
+ body{max-width:none;font-size:1em}
+ .noprint{display:none}
+ }
+</style>
diff --git a/template/index.html b/template/index.html
new file mode 100644
index 0000000..a5f7fc7
--- /dev/null
+++ b/template/index.html
@@ -0,0 +1,8 @@
+<header>
+ <p>Hello and welcome, my name is Vincent and you've landed on the small space where I ramble mainly about IT and occasionally other topics. You can check my articles below, my <a href="//git.vdouillet.fr" title="git.vdouillet.fr">git repos</a> or the <a href="/about.html" title="about">about</a> page.</p>
+</header>
+<ul>
+ <li><a href="/browsing-gems.html" title="Browsing gems">10-11-2021 Browsing gems</a></li>
+ <li><a href="/raspberry-pi-white-noise-machine.html" title="Raspberry Pi white noise machine">09-29-2021 Raspberry Pi white noise machine</a></li>
+ <li><a href="/openbsd-simple-git-server.html" title="Simple git server on OpenBSD">09-11-2021 Simple git server on OpenBSD</a></li>
+</ul>