DEVELOPMENT ENVIRONMENT

~liljamo/tixe

ref: 98b2d44d6e1949ba64c8be88d22c94ffbed0cddc tixe/template/templates/common/base.tmpl -rw-r--r-- 332 bytes
98b2d44dJonni Liljamo feat: whole page padding 1 year, 3 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ define "tixe" }}
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">

	<meta name="viewport" content="width=device-width, initial-scale=1.0">

	<link rel="stylesheet" type="text/css" href="/static/styles.css">
</head>
<body>
	<main>
		<div class="p-4">
			{{ template "content" . }}
		</div>
	</main>
</body>
</html>
{{ end }}