-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_config.py
61 lines (51 loc) · 2.26 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
60
61
# -*- 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://zzpwelkin.github.com/myblogo/"
#site.url = "http://localhost:8080/myglogo/"
site.dir = "_site"
#### 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 = "zzpwelkin"
#blog.name = "路漫漫其修远兮,我将上下而求所——不息的鹏"
## blog_description -- A short one line description of the blog
# used in the RSS/Atom feeds.
blog.description = "Working in headwind"
## blog_timezone -- the timezone that you normally write your blog posts from
blog.timezone = "Asia/Chongqing"
## blog comments
blog.disqus.enabled = True
########################################################
## photo gallery ##
########################################################
controllers.photo_gallery.enabled = True
## photo html directory
photo_gallery_dir = "photos"