barcodes/templates/base.html

16 lines
499 B
HTML
Raw 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>
<!-- CSS and JS Inclusions -->
<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>