diff --git a/README.md b/README.md
index 9c45454..646a2b7 100644
--- a/README.md
+++ b/README.md
@@ -2,10 +2,11 @@ blog-software(config, template, content) = blog website
## Usage
-1. [Download the program from here](/Minecon724/blog-software-java/releases)
+1. [Download the program from here](/Minecon724/blog-software-java/releases) \
+ **Mini** or **Full**? **Full** contains dependencies, which use native libraries. Choose **Full**, if unsure.
2. Run the program:
```shell
- java -jar blog-0.0.1-shaded.jar -s example_workdir
+ java -jar blog-0.0.2-standalone-full.jar -s example_workdir
```
For tips on how to create your own project (workdir), see [Project format](#Project format) below.
@@ -25,11 +26,11 @@ There's an ["Example workdir"](/Minecon724/blog-software-java/src/branch/master/
Basically:
- `assets/` - contains static assets
-- `posts/` - contains posts. Post format:
+- `articles/` - contains articles. Post format:
- Header / metadata:
- - `title A title` - post title
- - `summary This is a post with a title` - post summary
- - `live` - is the post live (not draft), doesn't need an argument
+ - `title A title` - article title
+ - `summary This is a article with a title` - article summary
+ - `live` - is the article live (not draft), doesn't need an argument
- Custom properties, which are Strings
- ` ` - Empty line separates header from content
- Post content in HTML. Generally not sanitized, but depends on template.
@@ -43,5 +44,5 @@ Basically:
https://pebbletemplates.io is used
- `static/` - contains static assets
-- `article_template.html` - post template
+- `article_template.html` - article template
- `index_template.html` - index.html template
\ No newline at end of file
diff --git a/example_workdir/posts/cool-post.html b/example_workdir/articles/cool-post.html
similarity index 100%
rename from example_workdir/posts/cool-post.html
rename to example_workdir/articles/cool-post.html
diff --git a/example_workdir/posts/lorem-ipsum.html b/example_workdir/articles/lorem-ipsum.html
similarity index 100%
rename from example_workdir/posts/lorem-ipsum.html
rename to example_workdir/articles/lorem-ipsum.html
diff --git a/example_workdir/site.yml b/example_workdir/site.yml
index 8e8c264..867b60b 100644
--- a/example_workdir/site.yml
+++ b/example_workdir/site.yml
@@ -1,6 +1,9 @@
name: my blog
baseUrl: https://example.com/blog
+# Whether to apply Pebble templating to posts. Disabled by default, not recommended.
+# templateArticles: true
+
coolProperty: 1231
coolerProperty:
isMap: true
diff --git a/example_workdir/template/article_template.html b/example_workdir/template/article_template.html
index 3708ac1..9af9f94 100644
--- a/example_workdir/template/article_template.html
+++ b/example_workdir/template/article_template.html
@@ -36,7 +36,7 @@
- {{ article.htmlContent | raw }}
+ {{ content | raw }}