Added basic template functionality.
[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
4#####
5# CMless Configuration Options
6#####
7
8# The prefix to the website content relative to the bin/ folder which contains
9# the CMless code.
d955cfad
AT
10site_data_prefix = "../site/data"
11
12# The prefix to the website template relative to the bin/ folder which contains
13# the CMless code.
14site_template_prefix = "../site/template"
15
16# Document that contains the main page template for the website.
17template_file = "template.tpl"
18
19# Specifies a string to mark the start and end of template specific commands.
20template_delimiter = "%%"
5dc44f45
AT
21
22# Full path to the markup processor which can interpret the data files in
23# site_path_prefix and output HTML. It should accept markup data on stdin and
24# output HTML on stdout.
25markup_processor = "/usr/bin/markdown"
26
27# File extension associated with the markup format used by the data files in
28# site_path_prefix.
29markup_file_extension = ".md"