summaryrefslogtreecommitdiff
path: root/template.html
diff options
context:
space:
mode:
authornea <nea@nea.moe>2023-08-04 23:02:20 +0200
committernea <nea@nea.moe>2023-08-04 23:02:20 +0200
commit2563bf526aa47b2a3e2ec3b30eff9b9f808dd270 (patch)
tree4d45199fd00419dc888035114e9339bec986dadc /template.html
parent5945696d0752cfb70ecf0c1e410547cf1c7471e3 (diff)
downloadechowebsite-2563bf526aa47b2a3e2ec3b30eff9b9f808dd270.tar.gz
echowebsite-2563bf526aa47b2a3e2ec3b30eff9b9f808dd270.tar.bz2
echowebsite-2563bf526aa47b2a3e2ec3b30eff9b9f808dd270.zip
Add papercss
Diffstat (limited to 'template.html')
-rw-r--r--template.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/template.html b/template.html
new file mode 100644
index 0000000..d8abe1e
--- /dev/null
+++ b/template.html
@@ -0,0 +1,35 @@
+<html>
+ <head>
+ <title>%title%</title>
+ <link
+ rel="stylesheet"
+ href="https://unpkg.com/papercss@1.9.2/dist/paper.min.css"
+ />
+ <link rel="stylesheet" href="style.css" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <meta http-equiv="X-UA-Compatible" content="ie-edge" />
+ </head>
+ <body>
+ <nav class="border fixed split-nav">
+ <div class="nav-brand">
+ <h3><a href="#">ECHO</a></h3>
+ </div>
+ <div class="collapsible">
+ <input id="collapsible1" type="checkbox" name="collapsible1" />
+ <label for="collapsible1">
+ <div class="bar1"></div>
+ <div class="bar2"></div>
+ <div class="bar3"></div>
+ </label>
+ <div class="collapsible-body">
+ <ul class="inline">
+ <li><a href="#">About</a></li>
+ <li><a href="#">Blog</a></li>
+ <li><a href="https://github.com/exhq">GitHub</a></li>
+ </ul>
+ </div>
+ </div>
+ </nav>
+ <div class="paper container">%postBody%</div>
+ </body>
+</html>