From cb05b3b7d9b5a6f086e0d348cdce50f54b5ddbf2 Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Mon, 20 Nov 2023 00:16:04 +0100 Subject: update readme after merging in own layout/css --- README.md | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 15c8ac1..03c9c58 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,30 @@ # blog -Personal blog currently hosted on [blog.memzero.de](https://blog.memzero.de). +This repository contains the sources that make up my personal blog, which is +currently hosted at [blog.memzero.de](https://blog.memzero.de). -The blog is based on the [getzola/hyde](https://github.com/getzola/hyde) theme -and rendered with [getzola/zola](https://github.com/getzola/zola). +The blog comes with an own _layout_ and _style_ and is generated with the +static site generator [zola](https://github.com/getzola/zola). + +I am by no means a web developer, so be warned about the `html` and `css` you +find in here :^). But in general I like minimalism and `monospace`. + +The repository is organized as follows. + +- [`templates/`](templates) contains the layout +- [`sass/`](sass) contains the style +- [`content/`](content) contains the blog content (posts + source code examples) + +Once zola is installed, the website can be served for testing in the local +network as shown below. +```sh +# Listen on local host (only the device running the command can visit the page). +zola serve --open + +# Listen on any address and use the ip address of the device as base url. This +# allows to visit the page during testing from other devices in the same +# network as for example a mobile deive. +zola serve --open -i 0.0.0.0 -u +``` +> NOTE: Serving with zola is only for testing, don't use zola to serve the page +> on the web. Use a proper http server for that. -- cgit v1.2.3