all repos — todo.txt-web @ 6eab03481330f6359fc318041b6c3a9468e3d8ca

Minimalist Web interface for todo.txt file management

templates/layout.html (view raw)

 1{{ define "HTMLBase" }}
 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="/static/style.css" />
 9  </head>
10  <body>
11    {{block "content" .}}{{end}}
12  </body>
13</html>
14{{end}}