diff options
Diffstat (limited to 'example/template.html')
| -rw-r--r-- | example/template.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/example/template.html b/example/template.html new file mode 100644 index 0000000..81f978b --- /dev/null +++ b/example/template.html @@ -0,0 +1,29 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="UTF-8"> + <title>{{TITLE}}</title> + + <link rel="stylesheet" href="style.css" type="text/css"> +</head> + +<body> + + <header> + <h1><a href="index.html" class="h_mallocd">: mallocd :</a></h1> + </header> + + <nav id="side-bar"> + {{NAV}} + </nav> + + <article> + {{CONTENT}} + </article> + + <footer> + <p>(c) 2025 uint</p> + </footer> + +</body> +</html> |
