Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

publishconf.py 588B

il y a 7 ans
il y a 7 ans
123456789101112131415161718192021222324252627
  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. SITEURL = 'https://github.com/KaiSD/ogs-site'
  11. TIMEZONE = 'Europe/Moscow'
  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_SITENAME = ""
  18. #GOOGLE_ANALYTICS = ""
  19. OUTPUT_PATH = '..'