diff --git a/README.md b/README.md index b94410c..996825e 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,25 @@ In this context lightweight means: * No pipeline. What you see is pure code without a need to install it. * No overhead, essential features, simple usage. +## Screenshots +
+ Light theme + +![screenshot](https://raw.githubusercontent.com/m1k1o/blog/master/static/screenshot-theme02-light.png) +
+ +
+ Dark theme + +![screenshot](https://raw.githubusercontent.com/m1k1o/blog/master/static/screenshot-theme02-dark.png) +
+ +
+ Legacy theme (compatible with older browsers) + +![screenshot](https://raw.githubusercontent.com/m1k1o/blog/master/static/screenshot-theme01.png) +
+ ## Install standalone app using `docker-compose` You need to install [docker-compose](https://docs.docker.com/compose/install/). @@ -109,6 +128,7 @@ To check if your server is set up correctly, turn on a debug mode (in config add # Features +* Dark mode, retina ready, legacy theme available. * Create own language mutations, available: **English** and **German**. * Use BBcode in texts. * Make posts available for **everyone**, **only you** or just for **friends**. @@ -125,5 +145,3 @@ To check if your server is set up correctly, turn on a debug mode (in config add * Display posts from chosen date using (format YYYY-MM-DD or YYY-MM): `http://blog/#from=2017-06`. * Display posts to chosen date using (format YYYY-MM-DD or YYY-MM): `http://blog/#to=2017-06`. * Combine parameters in url using `&`, e.g. show posts between dates: `http://blog/#from=2017-06&to=2017-08`. - -![screenshot](https://raw.githubusercontent.com/m1k1o/blog/master/static/screenshot.png) diff --git a/config.ini b/config.ini index 760382a..9861cfb 100644 --- a/config.ini +++ b/config.ini @@ -20,7 +20,7 @@ lang = en highlight = true [custom] -theme = theme01 +theme = theme02 ;header = data/header.html ;styles[] = static/styles/custom1.css ;styles[] = static/styles/custom2.css diff --git a/static/screenshot.png b/static/screenshot-theme01.png similarity index 100% rename from static/screenshot.png rename to static/screenshot-theme01.png diff --git a/static/screenshot-theme02-dark.png b/static/screenshot-theme02-dark.png new file mode 100644 index 0000000..ff7e220 Binary files /dev/null and b/static/screenshot-theme02-dark.png differ diff --git a/static/screenshot-theme02-light.png b/static/screenshot-theme02-light.png new file mode 100644 index 0000000..7023691 Binary files /dev/null and b/static/screenshot-theme02-light.png differ