Skip to content

Instantly share code, notes, and snippets.

@Cibernomadas
Created June 2, 2018 15:32
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/94ae78855103b6b774e7920b9f961db1 to your computer and use it in GitHub Desktop.
Save Cibernomadas/94ae78855103b6b774e7920b9f961db1 to your computer and use it in GitHub Desktop.
<html>
<head>
{{ if .title }}
<title>{{ .title }}</title>
{{ else }}
<title>Título por defecto</title>
{{ end }}
</head>
<body>
<div>
GoBlog:
<a href="/">Homepage</a>
<a href="/login">Login</a>
</div>
<hr>
{{ if .error }}
<p>Error: {{ .error }} </p>
{{ end }}
{{ template "index.html" . }}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment