You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
360 B
Cheetah
16 lines
360 B
Cheetah
<nav>
|
|
<p><a href="https://github.com/go-fed/apcore/example">Example apcore App</p>
|
|
<ul>
|
|
{{range .Nav}}
|
|
<li><a href="{{.Href}}">{{.Name}}</a></li>
|
|
{{end}}
|
|
{{if .User}}
|
|
<li><a href="/notes/create">create</a></li>
|
|
<li><a href="/logout">logout</a></li>
|
|
<p>Hi, {{.User}}!</p>
|
|
{{else}}
|
|
<li><a href="/login">login</a></li>
|
|
{{end}}
|
|
</ul>
|
|
</nav>
|