forked from notcraig/pelican-free-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pelicanconf.py
69 lines (57 loc) · 2.82 KB
/
pelicanconf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
AUTHOR = 'Free Agent'
SITENAME = 'Free Agent'
SITESUBTITLE = 'Something - Something - Dark Side'
SITEURL = ''
THEME_STATIC_DIR = 'static'
PATH = 'content'
STATIC_PATHS = [ 'images','mail','js', 'css', 'fonts']
EXTRA_PATH_METADATA = {
'static/images/portfolio': {'path': 'images/portfolio'},
}
TIMEZONE = 'America/Phoenix'
DEFAULT_LANG = 'en'
BOOTSTRAP_FILE = 'bootstrap.min.css'
CSS_FILE = 'freeagent.css'
FONTS = 'fonts'
SCRIPTS = [
'jquery-1.11.0.js',
'bootstrap.min.js',
'http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js',
'classie.js',
'cbpAnimatedHeader.js',
'jqBootstrapValidation.js',
'contact_me.js',
'freeagent.js'
]
# Feed generation is usually not desired when developing
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
DIRECT_TEMPLATES = ['index']
# Top Menu Links
NAVLINKS = (
('#page-top', ''),
('#portfolio', 'Portfolio'),
('#about', 'About'),
('#contact', 'Contact')
)
# Portfolio Name
PORTFOLIO = 'Portfolio'
#Contact form fields sorted by: label, input_type, id, required_validation_,msg
CONTACT_FIELDS = (
['Name', 'text', 'name', 'Please enter your name.'],
['Email Address', 'email', 'email','Please enter your email address.' ],
['Phone Number', 'tel', 'phone', 'Please enter your phone number.'],
['Message', 'textarea', 'message', 'Please enter a message.']
)
ADDRESS1 = 'The Internet'
ADDRESS2 = 'Any City, Any Place'
# Left column
ABOUT_LEFT = 'Take me to your leader! Switzerland is small and neutral! We are more like Germany, ambitious and misunderstood! I\'m Santa Claus! And so we say goodbye to our beloved pet, Nibbler, who\'s gone to a place where I, too, hope one day to go. The toilet.</p><p>Wow, you got that off the Internet? In my day, the Internet was only used to download pornography. <strong> I meant \'physically\'.</strong> <em> Look, perhaps you could let me work for a little food?</em> I could clean the floors or paint a fence, or service you sexually?</p><h3>Guess again.</h3>'
# Right column
ABOUT_RIGHT = '<p>It\'s a fez. I wear a fez now. Fezes are cool. You know how I sometimes have really brilliant ideas? You know when grown-ups tell you \'everything\'s going to be fine\' and you think they\'re probably lying to make you feel better?</p><p>You hate me; you want to kill me! Well, go on! Kill me! KILL ME! It\'s art! A statement on modern society, \'Oh Ain\'t Modern Society Awful? \'! <strong> All I\'ve got to do is pass as an ordinary human being.</strong> <em> Simple.</em> What could possibly go wrong?</p><p>Father Christmas. Santa Claus. Or as I\'ve always known him: Jeff.</p>'
# Center
ABOUT_CENTER = '<a href="https://github.com/thetawavestudio" target="_blank" class="btn btn-lg btn-outline"><i class="fa fa-download">Go to my Github</i> </a>'