diff options
| author | Mirek Kratochvil <exa.exa@gmail.com> | 2023-05-21 00:14:22 +0200 |
|---|---|---|
| committer | Mirek Kratochvil <exa.exa@gmail.com> | 2023-05-21 00:14:22 +0200 |
| commit | 693f1944c5e07d68b5e3007c11a64de3a0f191ed (patch) | |
| tree | 463f106b462ed97aeae508d85a466d44569c1593 /templates | |
| parent | a6148fdb91c53c3d4ae217f3ce38361b04a775b9 (diff) | |
| download | reploy-693f1944c5e07d68b5e3007c11a64de3a0f191ed.tar.gz reploy-693f1944c5e07d68b5e3007c11a64de3a0f191ed.tar.bz2 | |
tagges
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/default.html | 12 | ||||
| -rw-r--r-- | templates/page.html | 3 | ||||
| -rw-r--r-- | templates/tag.html | 14 |
3 files changed, 29 insertions, 0 deletions
diff --git a/templates/default.html b/templates/default.html new file mode 100644 index 0000000..52c4b44 --- /dev/null +++ b/templates/default.html @@ -0,0 +1,12 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <title>My Stuffs - $title$</title> + </head> + <body> + <h1>$title$</h1> + $body$ + </body> +</html> diff --git a/templates/page.html b/templates/page.html new file mode 100644 index 0000000..38b50ce --- /dev/null +++ b/templates/page.html @@ -0,0 +1,3 @@ +<section> + $body$ +</section> diff --git a/templates/tag.html b/templates/tag.html new file mode 100644 index 0000000..6f329cd --- /dev/null +++ b/templates/tag.html @@ -0,0 +1,14 @@ +<section> + <h2>Tag</h2> + <ul> + $for(htags)$ + <li>$htag$</li> + $endfor$ + </ul> + <h2>Pages</h2> + <ul> + $for(pages)$ + <li><a href="$page$">$page$</a></li> + $endfor$ + </ul> +</section> |
