diff options
author | Michael McVady <femtonaut@gmail.com> | 2022-03-10 21:07:10 -0500 |
---|---|---|
committer | Michael McVady <femtonaut@gmail.com> | 2022-03-10 21:07:10 -0500 |
commit | 91723dca0ee9bf68b0147dcf233274cd93f911c8 (patch) | |
tree | 9821689c75986b52d56ef59cfab719d2c787fa28 /assets | |
parent | bbf79174149cf9dde3e08c42d01ba752c6589afe (diff) |
Render something on errors
Diffstat (limited to 'assets')
-rw-r--r-- | assets/error.html | 5 | ||||
-rw-r--r-- | assets/post.html | 8 | ||||
-rw-r--r-- | assets/static/css/default.css | 2 |
3 files changed, 10 insertions, 5 deletions
diff --git a/assets/error.html b/assets/error.html new file mode 100644 index 0000000..789988a --- /dev/null +++ b/assets/error.html @@ -0,0 +1,5 @@ + +<div class="head"> +<h1>%s</h1> +</div> + diff --git a/assets/post.html b/assets/post.html index 8b105aa..a199fd6 100644 --- a/assets/post.html +++ b/assets/post.html @@ -1,13 +1,13 @@ -<!-- begin post: {{ post.id }} --> + <div class="post"> <hr class="hdiv"/> <div class="head"> <h2><span class="title">%s</span></h2> -<span class="date">%s <!-- {{ post.epoch }} --></span> +<span class="date">%s</span> </div> <div class="body"> %s -</div> <!--body--> +</div> <hr class="hdiv"/> </div> -<!-- end post: {{ post.id }} --> + diff --git a/assets/static/css/default.css b/assets/static/css/default.css index 3db6da0..c6dcf9a 100644 --- a/assets/static/css/default.css +++ b/assets/static/css/default.css @@ -102,7 +102,7 @@ body { opacity: 0.5; padding: 1px; font-size: 40pt; - height: 0.9em; + /* height: 0.9em; */ text-shadow: 0.0em 0.0em 0.2em rgb(230,230,255); } |