all repos — auth-boilerplate @ 183cedb78911fa8dfa5c9831a6a010a0c8a805a1

A simple Go web-app boilerplate.

templates/index.tmpl (view raw)

1{{ extends "base.tmpl" }}
2
3{{define "title" -}}{{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}}