diff options
author | neodarz <neodarz@neodarz.net> | 2018-07-29 20:37:34 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2018-07-29 20:37:34 +0200 |
commit | aa0ec4755f5bb44271182f29bbbc77c70320dbc9 (patch) | |
tree | 2fc8ef004fafd535537c874dbea669c80075ae8b /config/generator.toml | |
parent | 90e53d5d574442b9c8dc8a19841171eb8694b932 (diff) | |
download | my_new_personal_website-aa0ec4755f5bb44271182f29bbbc77c70320dbc9.tar.xz my_new_personal_website-aa0ec4755f5bb44271182f29bbbc77c70320dbc9.zip |
Add blog configurations in a config file
Diffstat (limited to 'config/generator.toml')
-rw-r--r-- | config/generator.toml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/config/generator.toml b/config/generator.toml new file mode 100644 index 00000000..d2177c07 --- /dev/null +++ b/config/generator.toml @@ -0,0 +1,21 @@ +########################### GENERATOR CONFIGURATIONS ########################### +# Do not touch unless you know what you are doing. +[generator] + GENERATOR_NAME = "pyblog" + GENERATOR_HOME_PAGE = "https://github.com/zmwangx/zmwangx.github.io" + + SOURCEDIR = "source" + POSTSDIR = "blog" + INDEXMD = "index.md" + GENERATORSOURCE = "pyblog" + HTMLTEMPLATE = "template.html" + BUILDDIR = "build" + ATOM = "atom.xml" + RSS = "rss.xml" + INDEXHTML = "index.html" + EXCLUDELIST = ".exclude" + + FEED_MAX_ENTRIES = 20 + CODE_LINE_HEIGHT = 18 +####################### END OF GENERATOR CONFIGURATIONS ######################## + |