2017-07-29 09:22:34 +00:00
|
|
|
{{ template "header.html" }}
|
2017-07-29 11:54:23 +00:00
|
|
|
<header>
|
|
|
|
{{ if .Username }}
|
|
|
|
<p>Hello {{ .Username }}</p>
|
2017-07-29 09:22:34 +00:00
|
|
|
<a href="/logout">Logout</a>
|
|
|
|
{{ else }}
|
2017-07-29 11:54:23 +00:00
|
|
|
<p>You are not logged in<p>
|
2017-07-29 09:22:34 +00:00
|
|
|
<a href="/login">Login</a>
|
|
|
|
{{ end }}
|
2017-07-29 11:54:23 +00:00
|
|
|
</header>
|
|
|
|
<div>
|
2017-07-29 09:22:34 +00:00
|
|
|
</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>
|
2017-07-29 09:22:34 +00:00
|
|
|
{{ template "footer.html" }}
|