Add more example.config stuff
This commit is contained in:
parent
2d215b4a4e
commit
b12029984f
3 changed files with 22 additions and 2 deletions
|
@ -1,6 +1,10 @@
|
||||||
PATH=/
|
PATH=/
|
||||||
HTML='''Test HTML
|
HTML='''<h1>Test HTML</h1><br>
|
||||||
{{{Var}}}
|
<h2>{{{Var}}}</h2>
|
||||||
'''
|
'''
|
||||||
|
|
||||||
Var='''Test var value'''
|
Var='''Test var value'''
|
||||||
|
|
||||||
|
PATH=/inner
|
||||||
|
HTML_FILE='''example_config/inner.html'''
|
||||||
|
VAR_FILE='''example_config/var.html'''
|
||||||
|
|
15
example_config/inner.html
Normal file
15
example_config/inner.html
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
color: #FFF;
|
||||||
|
background-color: #333;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Inner</h1>
|
||||||
|
|
||||||
|
{{{VAR_FILE}}}
|
||||||
|
</body>
|
||||||
|
</html>
|
1
example_config/var.html
Normal file
1
example_config/var.html
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<h2>Some other text.</h2>
|
Loading…
Reference in a new issue