DEVELOPMENT ENVIRONMENT

~liljamo/tixe

ref: 682697574cadf92b9bc415efd901c48c8b1ca106 tixe/template/templates/common/base.tmpl -rw-r--r-- 302 bytes
68269757Jonni Liljamo docs: engine.go miniflux inspiration notice 1 year, 4 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ 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>
		{{ template "content" . }}
	</main>
</body>
</html>
{{ end }}