aboutsummaryrefslogtreecommitdiff
path: root/content/_pages/structure.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/_pages/structure.md')
-rw-r--r--content/_pages/structure.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/content/_pages/structure.md b/content/_pages/structure.md
new file mode 100644
index 0000000..d89761f
--- /dev/null
+++ b/content/_pages/structure.md
@@ -0,0 +1,21 @@
+# Structuring Blog Posts
+
+Blog posts should be placed into the `/content` directory and be named based only on their post date. See an example here:
+
+```.markdown
+2048-01-01.md
+```
+
+PHPetite will create a `target` by appending the page title inside the article to the file's date name. So a markdown file with the following content:
+
+```.markdown
+# Bladerunner Rocks
+
+Bladerunner is amazing because blah blah blah...
+```
+
+will render out the `target` link as:
+
+```.markdown
+example.com/#2048-01-01-bladerunner-rocks
+```