diff options
author | Zhiming Wang <zmwangx@gmail.com> | 2016-01-08 21:16:14 -0800 |
---|---|---|
committer | Zhiming Wang <zmwangx@gmail.com> | 2016-01-08 21:18:39 -0800 |
commit | f818d439160c8f06add42dd10cfcdbddc71b04d7 (patch) | |
tree | d3a6c54a0102826fbfbd1abcf55182fcd1004e00 /pyblog | |
parent | f0ef7cf56c4789e3862b7f49502955afa9d54097 (diff) | |
download | my_new_personal_website-f818d439160c8f06add42dd10cfcdbddc71b04d7.tar.xz my_new_personal_website-f818d439160c8f06add42dd10cfcdbddc71b04d7.zip |
Add stuff to source/ and exclude them
The lonely templates/template.html finally finds it home in the cozy
source/, where it rightfully belongs, without the need to worry about
being exposed to the world in build/ ;)
The full fontello distribution I downloaded (and unpacked) from
fontello.com is now in source/fonts/fontello.
Diffstat (limited to '')
-rwxr-xr-x | pyblog | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -62,8 +62,7 @@ SOURCEDIR = os.path.join(ROOTDIR, "source") POSTSDIR = os.path.join(SOURCEDIR, "blog") INDEXMD = os.path.join(SOURCEDIR, "index.md") GENERATORSOURCE = os.path.join(ROOTDIR, "pyblog") -TEMPLATEDIR = os.path.join(ROOTDIR, "templates") -HTMLTEMPLATE = os.path.join(TEMPLATEDIR, "template.html") +HTMLTEMPLATE = os.path.join(SOURCEDIR, "template.html") BUILDDIR = os.path.join(ROOTDIR, "build") ATOM = os.path.join(BUILDDIR, "atom.xml") RSS = os.path.join(BUILDDIR, "rss.xml") |