publishconf.py 852 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*- #
  3. from __future__ import unicode_literals
  4. # This file is only used if you use `make publish` or
  5. # explicitly specify it as your config file.
  6. import os
  7. import sys
  8. sys.path.append(os.curdir)
  9. from pelicanconf import *
  10. ## If site has ssl, must call it here, or https will try to load http things and error at user.
  11. SITEURL = 'https://demu.red'
  12. RELATIVE_URLS = False
  13. FEED_ALL_ATOM = 'feeds/all.atom.xml'
  14. CATEGORY_FEED_ATOM = 'feeds/%s.atom.xml'
  15. DELETE_OUTPUT_DIRECTORY = True
  16. # Following items are often useful when publishing
  17. # ### DISQUS ### {{{
  18. # disqus now forces ads...
  19. # DISQUS_SITENAME = "demu-red"
  20. # DISQUS_LOAD_LATER = True
  21. # DISQUS_NO_ID
  22. # ### End DISQUS ### }}}
  23. #GOOGLE_ANALYTICS = ""
  24. ### piwik ### {{{
  25. PIWIK_URL = 'stats.demu.red'
  26. # PIWIK_SSL_URL =
  27. PIWIK_SITE_ID = 1
  28. ### End piwik ### }}}