diff options
| author | gamerdonkey | 2020-06-25 22:05:33 -0500 |
|---|---|---|
| committer | gamerdonkey | 2020-06-25 22:05:33 -0500 |
| commit | eba1c7a596e8f19ac729839a2474860d025955d0 (patch) | |
| tree | 3352a416c03be3cc532a5a27a34f10462f9dc410 | |
| parent | 624a78a4471acec0076f92b03fc2a500d94ae7a6 (diff) | |
| download | gamerdonkey.com-blog-eba1c7a596e8f19ac729839a2474860d025955d0.tar.gz gamerdonkey.com-blog-eba1c7a596e8f19ac729839a2474860d025955d0.tar.bz2 gamerdonkey.com-blog-eba1c7a596e8f19ac729839a2474860d025955d0.zip | |
Organizing the posts a little better. At least bucketing them by year.
| -rw-r--r-- | content/2020/second-post.md (renamed from content/second-post.md) | 0 | ||||
| -rw-r--r-- | content/2020/test-post.md (renamed from content/test-post.md) | 0 | ||||
| -rw-r--r-- | pelicanconf.py | 7 |
3 files changed, 6 insertions, 1 deletions
diff --git a/content/second-post.md b/content/2020/second-post.md index 105b1b1..105b1b1 100644 --- a/content/second-post.md +++ b/content/2020/second-post.md diff --git a/content/test-post.md b/content/2020/test-post.md index 7769957..7769957 100644 --- a/content/test-post.md +++ b/content/2020/test-post.md diff --git a/pelicanconf.py b/pelicanconf.py index 3d01167..bfadb5d 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -4,7 +4,7 @@ from __future__ import unicode_literals AUTHOR = 'gamerdonkey' SITENAME = 'gamerdonkey' -SITEURL = 'https://gamerdonkey.com' +SITEURL = '' PATH = 'content' @@ -12,6 +12,11 @@ TIMEZONE = 'America/Chicago' DEFAULT_LANG = 'en' +# URL Options + +ARTICLE_URL = 'posts/{date:%Y}/{slug}/' +ARTICLE_SAVE_AS = 'posts/{date:%Y}/{slug}/index.html' + # Feed generation is usually not desired when developing FEED_ALL_ATOM = None CATEGORY_FEED_ATOM = None |
