templates/layout.tmpl (view raw)
1{{ define "layout.tmpl" }}
2<!DOCTYPE html>
3<html lang="fr">
4 <head>
5 <meta charset="UTF-8" />
6 <meta name="viewport" content="width=device-width,initial-scale=1" />
7 <title>{{block "title" .}}todo.txt{{end}}</title>
8 <link rel="stylesheet" type="text/css" href="/public/static/style.css" />
9 <script src="/public/static/script.js" defer></script>
10 </head>
11 <body>
12 {{block "content" .}}{{end}}
13 </body>
14</html>
15{{end}}
16