Skip to content

Instantly share code, notes, and snippets.

@Cibernomadas
Created June 26, 2018 21:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Cibernomadas/4ec5dc40404e2e13c15ad28fc57167a0 to your computer and use it in GitHub Desktop.
Save Cibernomadas/4ec5dc40404e2e13c15ad28fc57167a0 to your computer and use it in GitHub Desktop.
{{ define "menu" }}
<div>
GoBlog
<a href="/">Homepage</a>
{{ if .user }}
<span>Welcome {{ .user.Username }}</span>
<a href="/logout">Logout</a>
{{ else }}
<a href="/login">Login</a>
<a href="/register">Register</a>
{{ end }}
</div>
{{ end }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment