updates.html (741B) - raw
1 {{template "header" .}} 2 <h1>🐟{{.Config.SiteTitle}}!</h1> 3 {{template "nav.html" .}} 4 <br> 5 <p> 6 <h2>Recently updated files from <a href="//{{.User}}.{{.Config.Host}}">{{.User}}.{{.Config.Host}}</a></h2> 7 {{ range .Files }} 8 <div class="indent-wrap"> 9 <em>{{.TimeAgo}}</em> 10 <a href="//{{.Creator}}.{{$.Config.Host}}/{{.Name}}"> 11 {{ .Name}} 12 </a> {{ if eq .Creator $.AuthUser.Username }} (<a href="//{{$.Config.Host}}/edit/{{.Name}}">edit</a>){{ end}} 13 </div> 14 {{end}} 15 <br> 16 <a href="//{{$.Config.Host}}/updates/{{.User}}/atom.xml" class='person-link'>Atom Feed</a> 17 <hr class="thin"> 18 Made with <a href="https://git.alexwennerberg.com/flounder">Flounder</a>. <a href="https://www.patreon.com/alexwennerberg">Donate!</a> 19 {{template "footer" .}}