diff options
| author | Tom Smeding <tom@tomsmeding.com> | 2026-08-03 00:16:11 +0200 |
|---|---|---|
| committer | Tom Smeding <tom@tomsmeding.com> | 2026-08-03 00:16:11 +0200 |
| commit | 6412601c368d88aa0e8611ecdeea474946cd6d37 (patch) | |
| tree | 439e66ad8a18c4401c23f852dfe985a3b158c8e3 /pages/index.mustache | |
| parent | 6e8c2b8df3898d0f50463f3151831f5d7c9306a2 (diff) | |
Factor out common parts of templates into partials
Diffstat (limited to 'pages/index.mustache')
| -rw-r--r-- | pages/index.mustache | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/pages/index.mustache b/pages/index.mustache index 8811d7f..4e461c0 100644 --- a/pages/index.mustache +++ b/pages/index.mustache @@ -1,11 +1,8 @@ <!doctype html> <html lang="en"> <head> - <meta charset="utf-8"> + {{> headmeta}} <title>tirclogv</title> - <meta name="viewport" content="width=device-width, initial-scale=1"> - <link rel="stylesheet" href="/style.css"> - <link rel="icon" type="image/png" href="/favicon.png"> </head> <body> <div id="gridwrapper" data-page="index"> @@ -18,10 +15,7 @@ {{/channels}} {{/networks}} </main> - <footer> - <a href="https://git.tomsmeding.com/tirclogv">tirclogv</a> — An IRC log viewer by - <a href="https://tomsmeding.com">Tom Smeding</a>. - </footer> + {{> footer}} </div> </body> </html> |
