Echo Writes Code

page.tera.html

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>

<html lang="en-US">
	<head>
		<meta charset="utf-8">
		<meta name="viewport" content="width=device-width,initial-scale=1">
		<title>{% block title %}{% endblock %} | {{ application.name }}</title>
		<link rel="stylesheet" href="/static/page.css">
	</head>
	<body>
		<header>
			<h1><a href="/">{{ application.name }}</a></h1>
		</header>
		<main>{% block content %}{% endblock %}</main>
		<footer>
			<span>Powered by Gitten v{{ application.version }}</span>
		</footer>
	</body>
</html>