]> git.llucax.com Git - software/blitiri.git/blob - config.py.sample
Show comments when displaying a single article
[software/blitiri.git] / config.py.sample
1 #coding: utf8
2
3 # This is the sample configuration file for a blitiri blog engine.
4 # If you omit a variable, the default will be used.
5 #
6 # If you prefer, you can set the values directly inside blitiri.cgi and not
7 # have a configuration file.
8
9
10 # Directory where entries are stored
11 data_path = "/tmp/blog/data"
12
13 # Directory where comments are stored (must be writeable by the web server)
14 comments_path = "/tmp/blog/comments"
15
16 # Path where templates are stored. Use an empty string for the built-in
17 # default templates. If they're not found, the built-in ones will be used.
18 templates_path = "/tmp/blog/templates"
19
20 # URL to the blog, including the name. Can be a full URL or just the path.
21 blog_url = "/blog/blitiri.cgi"
22
23 # Style sheet (CSS) URL. Can be relative or absolute. To use the built-in
24 # default, set it to blog_url + "/style".
25 css_url = blog_url + "/style"
26
27 # Blog title
28 title = "I don't like blogs"
29
30 # Default author
31 author = "Hartmut Kegan"
32
33 # Article encoding
34 encoding = "utf8"
35
36