diff options
author | Raphael <mail@raphaelkabo.com> | 2024-02-27 17:19:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-27 17:19:36 +0000 |
commit | ec0bf2d6a9e74fd68febe9c09ba1997858ec3d7f (patch) | |
tree | 79ad5176790f20dd13610cda2ba72ba066ea64be /views/static.handlebars | |
parent | de688444d167fdb80c6e88b8ba837405ba7651a6 (diff) | |
parent | d607db902d801a9d84ea0075ff7f450be7875c49 (diff) |
Merge pull request #136 from lowercasename/rk/layout-tweaks
Layout tweaks and little fixes
Diffstat (limited to 'views/static.handlebars')
-rw-r--r-- | views/static.handlebars | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/views/static.handlebars b/views/static.handlebars index d28d8f2..a05aea7 100644 --- a/views/static.handlebars +++ b/views/static.handlebars @@ -1,10 +1,11 @@ -<article class="static-page"> - <header> - <h1>{{title}}</h1> - </header> - <main> - {{{content}}} - </main> -</article> - +<main class="page"> + <article class="static-page"> + <header> + <h1>{{title}}</h1> + </header> + <main> + {{{content}}} + </main> + </article> +</main> |