barcodes/templates/base.html

18 lines
623 B
HTML
Raw Permalink Normal View History

2023-09-03 20:52:51 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="charset" content="utf-8" />
<title>barcodes</title>
2023-09-03 21:41:25 +01:00
<link rel="icon" type="image/png" href="/favicon.png" />
2023-09-04 11:08:56 +01:00
<link rel="stylesheet" type="text/css" href="/style.css">
{{ template "head" . }}
2023-09-03 20:52:51 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Frederick Boniface" />
<meta name="description" content="Easily create a variety of barcodes" />
</head>
<body>
<h1>{{ template "title" }}</h1>
{{ template "body" . }}
</body>
</html>