|
0
|
1 # Qwaderton's Website Builder
|
|
|
2
|
|
2
|
3 qwb is a very stripped fork of kew, optimized specificly for x.css
|
|
|
4
|
|
|
5 ## conf
|
|
|
6
|
|
|
7 qwb reads `qwb.ini` file in first argument directory
|
|
|
8 if you run:
|
|
|
9 ```
|
|
|
10 $ qwb in/ out/
|
|
|
11 ```
|
|
|
12
|
|
|
13 qwb will read configuration from in/qwb.ini
|
|
|
14
|
|
|
15 ### ref
|
|
|
16
|
|
|
17 \[site\] block
|
|
|
18 **header:** string
|
|
|
19 **footer:** string
|
|
|
20 **style:** relative to webroot path
|
|
|
21 **template:** relative to pwd or absolute path to html file
|
|
|
22
|
|
|
23 ## template
|
|
|
24
|
|
|
25 it should contain these placeholders
|
|
|
26
|
|
|
27 {{TITLE}}
|
|
|
28 {{SITE_TITLE}}
|
|
|
29 {{FOOTER_TEXT}}
|
|
|
30 {{CSS}}
|
|
|
31 {{NAV}}
|
|
|
32 {{CONTENT}} |