summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorArne Rief <riearn@proton.me>2025-09-13 11:50:38 +0200
committerArne Rief <riearn@proton.me>2025-09-13 11:50:38 +0200
commitafc1f095745a548ff400f187d53bc1570f02bcf2 (patch)
tree00cc286e358c2dfcb5d868d64cd7fef5428ad625 /README.md
parentbc503590943804838a98e35c705a89667e5b0758 (diff)
RSS full content, index renamed to home, fix text bugs
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index e12f415..b6c3f03 100644
--- a/README.md
+++ b/README.md
@@ -59,7 +59,7 @@ Editing the theme is simple: you only have to recreate the path and file that yo
Here are three examples how to edit different aspects of the theme:
### Editing the Styling
-Let's say you want to make changes to the stylesheet: in your project, create `assets/css/main.css`, then simply add the CSS rules you would like to have. They will be merge with the theme's stylesheet in the final build and be added to or overwrite the theme's styling rules.
+Let's say you want to make changes to the stylesheet: in your project, create `assets/css/main.css`, then copy the CSS rules from the theme's stylesheet and add new rules or edit the existing ones for the changes you would like to have.
### Editing the HTML
You would like to display information like reading time and word count for each post. For this you will have to create `layouts/_default/single.html` in your project, then copy the content of the corresponding file from the theme into your own file and add the HTML and Go code for displaying this information. A block for displaying reading time and word count is already implemented in `layouts/partials/list/post-card.html`, here you would have to re-create these directories and this file in your project and simply remove the comment around the block.