|
-
-
- from __future__ import unicode_literals
-
-
-
-
- import os
- import sys
- sys.path.append(os.curdir)
- from pelicanconf import *
-
- SITEURL = 'http://opengamestudio.org'
- TIMEZONE = 'Europe/Moscow'
- RELATIVE_URLS = False
-
- FEED_ALL_ATOM = 'feeds/all.atom.xml'
- CATEGORY_FEED_ATOM = 'feeds/%s.atom.xml'
-
- DELETE_OUTPUT_DIRECTORY = True
-
-
-
-
- GOOGLE_ANALYTICS = "UA-3773114-1"
-
- OUTPUT_PATH = '..'
-
-
- MENUITEMS = (
- ('Games', '/pages/games.html'),
- ('Education', '/pages/education.html'),
- ('About', '/pages/about.html'),
- )
- DISPLAY_PAGES_ON_MENU = False
|