all repos — auth-boilerplate @ 5dad190cf2035dafa6b9735c198d7f2e1efdc130

A simple Go web-app boilerplate.

templates/index.tmpl (view raw)

1{{ extends "base.tmpl" }}
2
3{{define "title" -}}Auth boilerplate{{end}}
4
5{{define "content" -}}
6	<h1>Auth boilerplate</i>!</h1> 
7    <p>This page is accessible to anyone.</p>
8    <a href="/profile" class="button">Start</a>
9{{end}}