aboutsummaryrefslogtreecommitdiff
path: root/template/page.template
diff options
context:
space:
mode:
authorGravatar Chris Xiong <chirs241097@gmail.com> 2024-07-24 23:40:11 -0400
committerGravatar Chris Xiong <chirs241097@gmail.com> 2024-07-24 23:40:11 -0400
commitb736068ee7b82e05c2ede8bc48ace7ffa4709e29 (patch)
treeeaa3cce9fdd9973043a7a55613584f90f6598a20 /template/page.template
downloadnotekins-b736068ee7b82e05c2ede8bc48ace7ffa4709e29.tar.xz
Initial commit.
Diffstat (limited to 'template/page.template')
-rw-r--r--template/page.template77
1 files changed, 77 insertions, 0 deletions
diff --git a/template/page.template b/template/page.template
new file mode 100644
index 0000000..e0f5e7c
--- /dev/null
+++ b/template/page.template
@@ -0,0 +1,77 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta charset="utf-8">
+<meta name="viewport" content="width=device-width,initial-scale=1">
+<meta name="theme-color" content="#000000">
+<title>Notekins</title>
+<meta name="description" content="[Chris' Notekins] @POST_CONTENT_PLAIN/64@">
+<meta name="author" content="Chris Xiong">
+<style>
+#content .block {
+ margin: 1em 0;
+}
+#content .block {
+ display: none;
+ padding: 1em;
+}
+#content .block {
+ border: 1px solid;
+ border-color: #000;
+}
+span.left {
+ display: table-cell;
+ text-align: left;
+ text-overflow: ellipsis;
+ overflow: hidden;
+ white-space: nowrap;
+}
+span.right {
+ display: table-cell;
+ text-align: right;
+ white-space: nowrap;
+ min-width: 12em;
+}
+div.imgc {
+ background-size: cover;
+ background-position: 50% 50%;
+ flex: 200px;
+ height: 200px;
+ margin: 20px;
+ max-width: 400px;
+}
+a.imgl {
+ display: block;
+ height: 100%;
+ width: 100%;
+}
+img.emote {
+ max-width: 1.3em;
+ max-height: 1.3em;
+}
+span.date>a.anch {
+ padding-left: 0.5em;
+ opacity: 0;
+}
+span.date:hover>a.anch {
+ opacity: initial;
+}
+</style>
+</head>
+<body style="overflow-x:hidden;">
+ <div id="content">
+ <div id="postslist">
+ @POSTS@
+ </div>
+ <div id="insanch" style="height:5em;"></div>
+ <div id="footer">
+ @PAGER@
+ <div style="text-align:center;" class="TText">
+ Proudly powered by Notekins @NOTEKINS_VERSION@
+ <br>
+ Content licensed under CC BY-SA 4.0 unless otherwise stated.
+ </div>
+ </div>
+ </div>
+</body>
+</html>