-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path_config.py
66 lines (54 loc) · 2.48 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
62
63
64
65
66
# -*- 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://rascalmicro.com"
controllers.static.enabled = True
#### 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.url = "http://rascalmicro.com/blog"
## blog_name -- Your Blog's name.
# This is used repeatedly in default blog templates
blog.name = "Rascal Micro: small computers for art and science"
## blog_description -- A short one line description of the blog
# used in the RSS/Atom feeds.
blog.description = "Rascal Micro: small computers for art and science"
## blog_timezone -- the timezone that you normally write your blog posts from
blog.timezone = "US/Eastern"
## Markdown extensions
## These are turned off by default, but turned on
## to show examples in /blog/2009/07/24/post-2/
filters.markdown.extensions.def_list.enabled = True
filters.markdown.extensions.abbr.enabled = True
filters.markdown.extensions.footnotes.enabled = True
filters.markdown.extensions.fenced_code.enabled = True
filters.markdown.extensions.headerid.enabled = True
filters.markdown.extensions.tables.enabled = True
# Syntax highlighting
filters.syntax_highlight.style = "monokai"
filters.syntax_highlight.css_dir = "/css"