lots of deleting and a bit of theming
This commit is contained in:
parent
924db63eff
commit
98e4714f98
5 changed files with 16 additions and 16 deletions
|
@ -1,4 +1,4 @@
|
|||
title: hello
|
||||
author: pagwin
|
||||
tags: []
|
||||
tags: [hello, this is a list]
|
||||
date: 2024-8-1
|
||||
|
|
|
@ -1,4 +1,13 @@
|
|||
body .dark {
|
||||
/*https://color.adobe.com/create/color-contrast-analyzer*/
|
||||
/*dark theme*/
|
||||
/* TODO: make links stand out more*/
|
||||
body{
|
||||
background: #000;
|
||||
color: #49b;
|
||||
color: #5ac;
|
||||
}
|
||||
/*light theme*/
|
||||
/*
|
||||
body {
|
||||
background: #FA8072;
|
||||
color: #000;
|
||||
}*/
|
||||
|
|
|
@ -10,9 +10,8 @@
|
|||
<div id="header">
|
||||
<div id="navigation">
|
||||
<a href="/">Home</a>
|
||||
<a href="/about/">About</a>
|
||||
<a href="/contact/">Contact</a>
|
||||
<a href="/archive/">Archive</a>
|
||||
<a href="/links/">Links</a>
|
||||
<a href="/archive/">RSS</a>
|
||||
</div>
|
||||
</div>
|
||||
<div id="content">
|
||||
|
@ -20,7 +19,6 @@
|
|||
{{{content}}}
|
||||
</div>
|
||||
<div id="footer">
|
||||
Site proudly generated by <a href="https://shakebuild.com">Shake</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
<h2>Welcome</h2>
|
||||
<img src="/images/logo.png" style="float: right; margin: 10px;" />
|
||||
<p>Welcome to my blog!</p>
|
||||
<p>My recent posts here for your reading pleasure:</p>
|
||||
<h2>Posts</h2>
|
||||
{{> templates/post-list.html }}
|
||||
<p>You can find all posts in the <a href="/archive/">archives</a>.
|
||||
|
|
|
@ -1,15 +1,10 @@
|
|||
<div class="info">
|
||||
Posted on {{{date}}}
|
||||
{{#author}}
|
||||
by {{{author}}}
|
||||
{{/author}}
|
||||
{{{date}}}
|
||||
</div>
|
||||
<div class="info">
|
||||
Tags:
|
||||
<ul class="tags">
|
||||
{{#tags}}
|
||||
<li><a href="/tags/{{{.}}}/">{{{.}}}</a></li>
|
||||
<a href="/tags/{{{.}}}/">{{{.}}}</a>
|
||||
{{/tags}}
|
||||
</ul>
|
||||
</div>
|
||||
{{{content}}}
|
||||
|
|
Loading…
Reference in a new issue