From c3c8d5936aec99f343e0a87c49b1b7cedf7232e7 Mon Sep 17 00:00:00 2001
From: Marcel Kapfer <opensource@mmk2410.org>
Date: Thu, 19 Aug 2021 10:44:23 +0200
Subject: [PATCH 1/2] Added README file

---
 README.md | 4 ++++
 1 file changed, 4 insertions(+)
 create mode 100644 README.md

diff --git a/README.md b/README.md
new file mode 100644
index 0000000..61bb1d8
--- /dev/null
+++ b/README.md
@@ -0,0 +1,4 @@
+# nextDESIGN
+
+Since around 2013 (with a break from early 2016 und mid 2020 when I was using Wordpress) the web designs/themes used for my personal side are call "nextDESIGN".
+The current iteration is version 9 and is build as a theme for the [Hugo static site generator](https://gohugo.io/).

From a49f48845172caf444ed6319cdd5f9ca852d53fa Mon Sep 17 00:00:00 2001
From: Marcel Kapfer <opensource@mmk2410.org>
Date: Thu, 19 Aug 2021 10:44:36 +0200
Subject: [PATCH 2/2] Only align paragraphs justified

---
 assets/css/main.scss | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/assets/css/main.scss b/assets/css/main.scss
index 7985295..d060d81 100644
--- a/assets/css/main.scss
+++ b/assets/css/main.scss
@@ -45,7 +45,6 @@ body {
     color: $c-font;
     font-family: "Raleway", sans-serif;
     line-height: 1.5;
-    text-align: justify;
 
     @media (prefers-color-scheme: dark) {
 	background-color: $c-bg-inv;
@@ -206,6 +205,10 @@ main {
 	}
     }
 
+    p {
+        text-align: justify;
+    }
+
     a {
 	color: $c-primary;
 	text-decoration: none;