summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgamerdonkey2020-05-23 12:16:40 -0500
committergamerdonkey2020-05-23 12:16:40 -0500
commit4e43e209f777b71465558ab809179a1bdf1c17de (patch)
tree3ed6f04728f1e13f7cbae4ee438e6201ebce5655
downloadgamerdonkey.com-blog-4e43e209f777b71465558ab809179a1bdf1c17de.tar.gz
gamerdonkey.com-blog-4e43e209f777b71465558ab809179a1bdf1c17de.tar.bz2
gamerdonkey.com-blog-4e43e209f777b71465558ab809179a1bdf1c17de.zip
Initial commit.
-rw-r--r--.gitignore2
-rw-r--r--content/test-post.md30
-rw-r--r--pelicanconf.py35
-rw-r--r--publishconf.py25
4 files changed, 92 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..bacca8e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+__pycache__/
+output/
diff --git a/content/test-post.md b/content/test-post.md
new file mode 100644
index 0000000..950c21c
--- /dev/null
+++ b/content/test-post.md
@@ -0,0 +1,30 @@
+Title: Test Post
+Date: 2020-05-23
+Category: Test
+Tags: test, deleteme
+
+In this post, I'll be talking about testing how making a post works.
+
+# Wow
+
+Such section
+
+## Smaller Wow
+
+Old memes.
+
+### Keep going
+
+Even smaller
+
+#### There yet?
+
+Not yet.
+
+##### How about now?
+
+Almost
+
+###### Done?
+
+Okay, done.
diff --git a/pelicanconf.py b/pelicanconf.py
new file mode 100644
index 0000000..904073f
--- /dev/null
+++ b/pelicanconf.py
@@ -0,0 +1,35 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*- #
+from __future__ import unicode_literals
+
+AUTHOR = 'gamerdonkey'
+SITENAME = 'Projects and Thoughts'
+SITEURL = ''
+
+PATH = 'content'
+
+TIMEZONE = 'America/Chicago'
+
+DEFAULT_LANG = 'en'
+
+# Feed generation is usually not desired when developing
+FEED_ALL_ATOM = None
+CATEGORY_FEED_ATOM = None
+TRANSLATION_FEED_ATOM = None
+AUTHOR_FEED_ATOM = None
+AUTHOR_FEED_RSS = None
+
+# Blogroll
+LINKS = (('Pelican', 'http://getpelican.com/'),
+ ('Python.org', 'http://python.org/'),
+ ('Jinja2', 'http://jinja.pocoo.org/'),
+ ('You can modify those links in your config file', '#'),)
+
+# Social widget
+SOCIAL = (('You can add links in your config file', '#'),
+ ('Another social link', '#'),)
+
+DEFAULT_PAGINATION = 20
+
+# Uncomment following line if you want document-relative URLs when developing
+#RELATIVE_URLS = True \ No newline at end of file
diff --git a/publishconf.py b/publishconf.py
new file mode 100644
index 0000000..f49eb0b
--- /dev/null
+++ b/publishconf.py
@@ -0,0 +1,25 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*- #
+from __future__ import unicode_literals
+
+# This file is only used if you use `make publish` or
+# explicitly specify it as your config file.
+
+import os
+import sys
+sys.path.append(os.curdir)
+from pelicanconf import *
+
+# If your site is available via HTTPS, make sure SITEURL begins with https://
+SITEURL = 'https://gamerdonkey.com/blog'
+RELATIVE_URLS = False
+
+FEED_ALL_ATOM = 'feeds/all.atom.xml'
+CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml'
+
+DELETE_OUTPUT_DIRECTORY = True
+
+# Following items are often useful when publishing
+
+#DISQUS_SITENAME = ""
+#GOOGLE_ANALYTICS = "" \ No newline at end of file