forked from openframeworks/ofSite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.py
61 lines (48 loc) · 2.13 KB
/
_config.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
# -*- coding: utf-8 -*-
######################################################################
# This is your site's Blogofile configuration file.
# www.Blogofile.com
#
# This file doesn't list every possible setting, it relies on defaults
# set in the core blogofile _config.py. To see where the default
# configuration is on your system run 'blogofile info'
#
######################################################################
######################################################################
# Basic Settings
# (almost all sites will want to configure these settings)
######################################################################
## site_url -- Your site's full URL
# Your "site" is the same thing as your _site directory.
# If you're hosting a blogofile powered site as a subdirectory of a larger
# non-blogofile site, then you would set the site_url to the full URL
# including that subdirectory: "http://www.yoursite.com/path/to/blogofile-dir"
#site.url = "http://arturocastro.net/newofsite"
site.url = "http://localhost:8080"
#### Blog Settings ####
blog = controllers.blog
## blog_enabled -- Should the blog be enabled?
# (You don't _have_ to use blogofile to build blogs)
blog.enabled = True
## blog_path -- Blog path.
# This is the path of the blog relative to the site_url.
# If your site_url is "http://www.yoursite.com/~ryan"
# and you set blog_path to "/blog" your full blog URL would be
# "http://www.yoursite.com/~ryan/blog"
# Leave blank "" to set to the root of site_url
blog.path = "/blog"
## blog_name -- Your Blog's name.
# This is used repeatedly in default blog templates
blog.name = "openFrameworks"
## blog_description -- A short one line description of the blog
# used in the RSS/Atom feeds.
blog.description = "Your Blog's short description"
## blog_timezone -- the timezone that you normally write your blog posts from
blog.timezone = "US/Eastern"
controllers.documentation.enabled = True
controllers.community.enabled = True
controllers.tutorials.enabled = True
documentation = controllers.documentation
documentation.path = 'documentation'
tutorials = controllers.documentation
tutorials.path = 'tutorials'