diff options
author | davidovski <david@davidovski.xyz> | 2021-08-26 23:47:47 +0100 |
---|---|---|
committer | davidovski <david@sendula.com> | 2021-08-26 23:47:47 +0100 |
commit | e6eaad2eb74de4c4992d98ad6ddd2a35523cef96 (patch) | |
tree | a3ae1853c2f287a81c170de3dfbb8da3dcf1045e | |
parent | 2e4002e5ad2f495088da627bd7ee8a216eb4e7b1 (diff) |
fixed %content%
-rw-r--r-- | html/entries/welcome.html | 5 | ||||
-rwxr-xr-x | sync.sh | 1 | ||||
-rw-r--r-- | templates/page.html | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/html/entries/welcome.html b/html/entries/welcome.html index 666cc01..48844d7 100644 --- a/html/entries/welcome.html +++ b/html/entries/welcome.html @@ -38,7 +38,10 @@ <p>welcome to my site</p> <hr> <div class="entries"> - %entries% + <p>welcome. i decided to turn this wepage into blog-style site... i havent got a topic or anything, so expect either: quality tutorials and very interesting techy things; or just random shitposts or rambles about things.</p> +<p>originally i was going to make this blog on <a href="https://b.davidovski.xyz">b.davidovski.xyz</a> using <a href="http://nanoblogger.sourceforge.net/">nanoblogger</a> (you might be able to still see the start of that) but nb itself seemed quite dead, and i couldn't really be asked to customise it all myself. So i made my own script to generate this static site: <a href="https://github.com/davidovski/kblg/">kblg</a>. Right now its probably just the bare minimum needed for this, but I am planning to add more things to it as I go along (including rss, if anyone would be interested?)</p> +<p>anyway thats all for now, cya</p> +<p>~davidovski</p> </div> </div> @@ -5,3 +5,4 @@ cp templates/index.html templates/page.html python build.py rsync -Lta --no-perms --no-owner --no-group --delete --exclude=sync.sh -vz -e ssh ./html/ oracle:/srv/davidovski/html +git push # push after everything to keep it all backed up diff --git a/templates/page.html b/templates/page.html index 666cc01..46391ba 100644 --- a/templates/page.html +++ b/templates/page.html @@ -38,7 +38,7 @@ <p>welcome to my site</p> <hr> <div class="entries"> - %entries% + %content% </div> </div> |