Added %%site_title%% template keyword.
[cmless] / bin / config.py
CommitLineData
5dc44f45
AT
1# (c) 2017 Aaron Taylor <ataylor at subgeniuskitty dot com>
2# See LICENSE file for copyright and license details.
3
0a58f7f1
AT
4#####
5# Site Configuration Options
6#####
7
8# Site name. For example, "Microsoft" or "Bob's Hardware".
9site_name = "Site Name"
10
5dc44f45
AT
11#####
12# CMless Configuration Options
13#####
14
15# The prefix to the website content relative to the bin/ folder which contains
16# the CMless code.
d955cfad
AT
17site_data_prefix = "../site/data"
18
19# The prefix to the website template relative to the bin/ folder which contains
20# the CMless code.
21site_template_prefix = "../site/template"
22
23# Document that contains the main page template for the website.
24template_file = "template.tpl"
25
26# Specifies a string to mark the start and end of template specific commands.
27template_delimiter = "%%"
5dc44f45
AT
28
29# Full path to the markup processor which can interpret the data files in
30# site_path_prefix and output HTML. It should accept markup data on stdin and
31# output HTML on stdout.
32markup_processor = "/usr/bin/markdown"
33
34# File extension associated with the markup format used by the data files in
35# site_path_prefix.
36markup_file_extension = ".md"