diff options
author | Alex <alex@scerba.org> | 2024-05-04 17:27:43 -0400 |
---|---|---|
committer | Alex Scerba <alex@scerba.org> | 2024-08-15 22:54:25 -0500 |
commit | a70bda379ed3fdd1fe421cfc2606d052f7577dfd (patch) | |
tree | 593509ee01216c7bcc749551c245ceae8e5494d1 /html/wip.tmpl.html | |
parent | 3bc4e4fafba8c7c0116e750c752d25095fc6c6a2 (diff) |
Move to template system and adopt the .tmpl.html extension.
Diffstat (limited to 'html/wip.tmpl.html')
-rw-r--r-- | html/wip.tmpl.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/html/wip.tmpl.html b/html/wip.tmpl.html new file mode 100644 index 0000000..cfc323d --- /dev/null +++ b/html/wip.tmpl.html @@ -0,0 +1,10 @@ +{{ define "title" }}WIP{{end}}
+{{ define "description" }}Work in progress. Page under construction.{{end}}
+{{ define "keywords" }}hide{{end}}
+
+{{ define "main" }}
+ <section>
+ <h1>Whoops! Page under construction!</h1>
+ <p>Check back later.</p>
+ </section>
+{{ end }}
|