This repository has been archived by the owner on Feb 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtempler.cfg
139 lines (113 loc) · 2.44 KB
/
templer.cfg
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
##
#
# The first section of the configuration file refers to the
# input and output paths.
#
# Templer will process all files matching "*.tmplr" beneath a
# particular directory. That directory is the input directory.
#
input = input/
#
##
sitemap_file = /sitemap.xml
sitemap_base = https://lumail.org/
##
#
# Within the input directory we'll process files that match
# this suffix:
#
suffix = .tmplr
#
##
##
#
# If we're working in-place then files will be expanded where
# they are found.
#
# This means that the following files will be created:
#
# ./input/index.skx -> input/index.html
# ./input/foo/index.skx -> input/foo/index.html
# ..
#
in-place = 0
#
##
##
#
# The more common way of working is to produce the output in a separate
# directory.
#
# NOTE: If you specify both "in-place=1" and an output directory the former
# will take precedence.
#
#
output = ./output/
#
##
##
# Inclusion path to be searched for files.
#
##
include-path = ./includes/
##
#
# When pages are processed a layout-template will be used to expand the content
# into.
#
# Each page may specify its own layout if it so wishes, but generally we'd
# expect only one layout to exist.
#
# Here we specify both the path to the layout directory and the layout to use
# if none is specified:
#
#
layout-path = ./layouts/
layout = new.layout
#
##
#
# Anything below this is a global variable, accessible by name in your
# templates.
#
# For example this:
#
# copyright = © Steve Kemp 2012
#
# Can be used in your template, or you page text via:
#
# <!-- tmpl_var name='copyright' -->
#
copyright = © <a href="http://steve.kemp.fi/">Steve Kemp</a>
#
# Legacy-Project repository.
#
repo.legacy = https://github.com/lumail/lumail.obsolete/
#
# The current repository
#
repo.active = https://github.com/lumail/lumail/
#
# The (active) issue-tracker.
#
repo.issues = https://github.com/lumail/lumail/issues
#
# Website repository.
#
repo.web = https://github.com/lumail/lumail.org/
#
# Default configuration file.
#
legacy.cfg = https://raw.githubusercontent.com/lumail/lumail.obsolete/master/lumail.lua
#
# New configuration-file
#
lumail2.cfg = https://raw.githubusercontent.com/lumail/lumail/master/global.config.lua
#
# User configuration-file
#
lumail2.user.cfg = https://raw.githubusercontent.com/lumail/lumail/master/user.config.lua
#
# GPG documentation
#
gpg.md = https://raw.githubusercontent.com/lumail/lumail2/master/GPG.md