budgeteer/templates/index.html
2016-12-07 17:19:11 +01:00

21 lines
458 B
HTML

{{define "index"}}
<!DOCTYPE html>
<html>
<head>
<title>Budgeteer</title>
{{template "head"}}
</head>
<body>
<div class="container" id="head">
Budgeteer
</div>
<div class="container col-md-8 col-ld-8" id="content">
Willkommen bei Budgeteer, der neuen App für's Budget!
</div>
<div class="container col-md-4" id="login">
<a href="/login">Login</a>
</div>
</body>
</html>
{{end}}