go-examples/photoblog/templates/home.html

25 lines
457 B
HTML
Raw Normal View History

{{ template "header.html" }}
2017-07-29 11:54:23 +00:00
<header>
{{ if .Username }}
<p>Hello {{ .Username }}</p>
<a href="/logout">Logout</a>
{{ else }}
2017-07-29 11:54:23 +00:00
<p>You are not logged in<p>
<a href="/login">Login</a>
{{ end }}
2017-07-29 11:54:23 +00:00
</header>
<div>
</div>
2017-07-29 11:54:23 +00:00
<h1>Photo blog</h1>
{{ if .Username }}
<a href="upload">Add photo</a>
{{ end }}
<ul>
{{ range .Photos }}
<li><img src="{{ . }}" style="width:320px;height:200px;"></li>
{{ else }}
<li>No photos</li>
{{ end }}
</ul>
{{ template "footer.html" }}