Update example config
All checks were successful
Run Unit Tests / build-and-run-unit-tests (push) Successful in 9s
All checks were successful
Run Unit Tests / build-and-run-unit-tests (push) Successful in 9s
This commit is contained in:
parent
4e670d24c8
commit
07153f3588
2 changed files with 38 additions and 1 deletions
|
@ -38,3 +38,39 @@ HTML_FILE='''example_config/inner.html'''
|
|||
VAR_FILE='''example_config/var.html'''
|
||||
|
||||
PATH=/error
|
||||
|
||||
PATH=/inner/further
|
||||
HTML='''
|
||||
<html>
|
||||
<head>
|
||||
<style>
|
||||
body {
|
||||
color: #FFF;
|
||||
background-color: #333;
|
||||
}
|
||||
a {
|
||||
color: #AAF;
|
||||
}
|
||||
a:link {
|
||||
color: #AAF;
|
||||
}
|
||||
a:visited {
|
||||
color: #88B;
|
||||
}
|
||||
a:focus a:hover {
|
||||
color: #DDF;
|
||||
}
|
||||
a:active {
|
||||
color: #FFF;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Nested inner: further<h1>
|
||||
{{{VAR}}}
|
||||
<br>
|
||||
<a href="/inner">back</a>
|
||||
</body>
|
||||
</html>
|
||||
'''
|
||||
VAR='''yep'''
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
{{{VAR_FILE}}}
|
||||
|
||||
<br>
|
||||
<a href="..">Back.</a>
|
||||
<a href="/inner/further">further</a><br>
|
||||
<a href="/">Back.</a>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue