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
|
title: hello
|
||||||
author: pagwin
|
author: pagwin
|
||||||
tags: []
|
tags: [hello, this is a list]
|
||||||
date: 2024-8-1
|
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;
|
background: #000;
|
||||||
color: #49b;
|
color: #5ac;
|
||||||
}
|
}
|
||||||
|
/*light theme*/
|
||||||
|
/*
|
||||||
|
body {
|
||||||
|
background: #FA8072;
|
||||||
|
color: #000;
|
||||||
|
}*/
|
||||||
|
|
|
@ -10,9 +10,8 @@
|
||||||
<div id="header">
|
<div id="header">
|
||||||
<div id="navigation">
|
<div id="navigation">
|
||||||
<a href="/">Home</a>
|
<a href="/">Home</a>
|
||||||
<a href="/about/">About</a>
|
<a href="/links/">Links</a>
|
||||||
<a href="/contact/">Contact</a>
|
<a href="/archive/">RSS</a>
|
||||||
<a href="/archive/">Archive</a>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="content">
|
<div id="content">
|
||||||
|
@ -20,7 +19,6 @@
|
||||||
{{{content}}}
|
{{{content}}}
|
||||||
</div>
|
</div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
Site proudly generated by <a href="https://shakebuild.com">Shake</a>
|
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
<h2>Welcome</h2>
|
<h2>Welcome</h2>
|
||||||
<img src="/images/logo.png" style="float: right; margin: 10px;" />
|
|
||||||
<p>Welcome to my blog!</p>
|
<p>Welcome to my blog!</p>
|
||||||
<p>My recent posts here for your reading pleasure:</p>
|
<p>My recent posts here for your reading pleasure:</p>
|
||||||
<h2>Posts</h2>
|
<h2>Posts</h2>
|
||||||
{{> templates/post-list.html }}
|
{{> templates/post-list.html }}
|
||||||
<p>You can find all posts in the <a href="/archive/">archives</a>.
|
|
||||||
|
|
|
@ -1,15 +1,10 @@
|
||||||
<div class="info">
|
<div class="info">
|
||||||
Posted on {{{date}}}
|
{{{date}}}
|
||||||
{{#author}}
|
|
||||||
by {{{author}}}
|
|
||||||
{{/author}}
|
|
||||||
</div>
|
</div>
|
||||||
<div class="info">
|
<div class="info">
|
||||||
Tags:
|
Tags:
|
||||||
<ul class="tags">
|
|
||||||
{{#tags}}
|
{{#tags}}
|
||||||
<li><a href="/tags/{{{.}}}/">{{{.}}}</a></li>
|
<a href="/tags/{{{.}}}/">{{{.}}}</a>
|
||||||
{{/tags}}
|
{{/tags}}
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
{{{content}}}
|
{{{content}}}
|
||||||
|
|
Loading…
Reference in a new issue