Add more example.config stuff

This commit is contained in:
Stephen Seo 2024-09-06 12:42:18 +09:00
parent 2d215b4a4e
commit b12029984f
3 changed files with 22 additions and 2 deletions

View file

@ -1,6 +1,10 @@
PATH=/
HTML='''Test HTML
{{{Var}}}
HTML='''<h1>Test HTML</h1><br>
<h2>{{{Var}}}</h2>
'''
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
View 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
View file

@ -0,0 +1 @@
<h2>Some other text.</h2>