aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStonewall Jackson <stonewall@sacredheartsc.com>2023-01-22 10:18:36 -0500
committerStonewall Jackson <stonewall@sacredheartsc.com>2023-01-22 10:18:36 -0500
commit04cd17fef884325f37964edaa2e7e6d5e9cba805 (patch)
tree84395b627f60af7722c072c4fbcd31056493f96e
parent9f1b37fa346a7dcf77c1b6963a6d2e4b871fe5ed (diff)
downloadwww-04cd17fef884325f37964edaa2e7e6d5e9cba805.tar.gz
www-04cd17fef884325f37964edaa2e7e6d5e9cba805.zip
update readme
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 3f34cf6..36ab9bb 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@ First, install the `pip` requirements:
make install
-You'll want to edit the [Makefile](/www/tree/Makefile) to set your site URL,
+You'll want to edit the [Makefile](Makefile) to set your site URL,
RSS feed title, etc.
Then, start writing markdown documents in the `src` directory. You can use
@@ -25,9 +25,9 @@ whatever naming convention and directory structure you like. Files ending in
`.md` will be converted to `.html` with the same path.
The `src/blog` directory is special. Markdown files in this directory are
-used to populate the front-page blog listing in [index.md](/www/tree/src/index.md).
+used to populate the front-page blog listing in [index.md](src/index.md).
Before pandoc converts this file to HTML, the special string `__BLOG_LIST__`
-is replaced with the output of [bloglist.py](/www/tree/scripts/bloglist.py).
+is replaced with the output of [bloglist.py](scripts/bloglist.py).
This Python script produces a date-sorted markdown list of all your blog posts.
Each markdown file can have YAML frontmatter with the following metadata:
@@ -41,7 +41,7 @@ Each markdown file can have YAML frontmatter with the following metadata:
draft: if set, hides the post from the blog listing
---
-You can change the resulting HTML by modifying the [template](/www/tree/templates/default.html).
+You can change the resulting HTML by modifying the [template](templates/default.html).
Changing the format of the blog listing requires modifying the Python script.
Build the website by using the default target: