Add Makefile and basic config
parent
2580f0393d
commit
8b7e357ea6
@ -0,0 +1,2 @@
|
|||||||
|
output: pelicanconf.py content pages
|
||||||
|
pelican content
|
@ -0,0 +1,38 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# -*- coding: utf-8 -*- #
|
||||||
|
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
sys.path.append(os.curdir)
|
||||||
|
|
||||||
|
AUTHOR = 'LEdoian'
|
||||||
|
SITENAME = 'LEdoian'
|
||||||
|
SITEURL = ''
|
||||||
|
|
||||||
|
PATH = 'content'
|
||||||
|
THEME = 'test-theme'
|
||||||
|
|
||||||
|
TIMEZONE = 'Europe/Prague'
|
||||||
|
|
||||||
|
DEFAULT_LANG = 'en'
|
||||||
|
|
||||||
|
# Feed generation is usually not desired when developing
|
||||||
|
FEED_ALL_ATOM = 'feeds/all.atom.xml'
|
||||||
|
CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml'
|
||||||
|
TRANSLATION_FEED_ATOM = None
|
||||||
|
AUTHOR_FEED_ATOM = None
|
||||||
|
AUTHOR_FEED_RSS = None
|
||||||
|
|
||||||
|
# Blogroll
|
||||||
|
LINKS = ()
|
||||||
|
|
||||||
|
# Social widget
|
||||||
|
SOCIAL = (('Mail', 'mailto:blog@pokemon.ledoian.cz'),
|
||||||
|
)
|
||||||
|
|
||||||
|
DEFAULT_PAGINATION = False
|
||||||
|
|
||||||
|
# Uncomment following line if you want document-relative URLs when developing
|
||||||
|
RELATIVE_URLS = True
|
||||||
|
|
||||||
|
DELETE_OUTPUT_DIRECTORY = True
|
Loading…
Reference in New Issue