diff options
author | Eddy Pedroni <epedroni@pm.me> | 2025-04-08 17:01:55 +0200 |
---|---|---|
committer | Eddy Pedroni <epedroni@pm.me> | 2025-04-08 17:02:46 +0200 |
commit | 83d175b7b069bc3bbc0d600c2fab4d082e04b521 (patch) | |
tree | 9d1b7975ad16f7d5433285d3fab0a7cc38d24564 /template.html | |
parent | 38b40d8c5a8915716b3aa46aac4a0a84d0113b25 (diff) |
Python implementation with better multi-entry page support
Diffstat (limited to 'template.html')
-rw-r--r-- | template.html | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/template.html b/template.html deleted file mode 100644 index 1e56d6f..0000000 --- a/template.html +++ /dev/null @@ -1,28 +0,0 @@ -<!DOCTYPE html> -<html> - <head> - <title>{{.SiteTitle}} - Docs</title> - <link rel="stylesheet" href="{{.StylesheetUrl}}" /> - <meta charset="UTF-8"> - <meta name="author" content="Eduardo Pedroni"> - </head> - <body> - <header>{{.SiteTitle}}</header> - <nav> - <ul> - {{range .Nav}} - <li> - <a href="{{.AbsoluteUrl}}">{{.Text}}</a> - </li> - {{end}} - </ul> - </nav> - <main> - {{range .Content}} - <article> - {{.}} - </article> - {{end}} - </main> - </body> -</html> |