blob: d89761f7e8db72f576da61de73ddd8d63448c0c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
```
|