59 lines
1.7 KiB
HTML
59 lines
1.7 KiB
HTML
{{define "user_home"}}<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{{template "meta_tags" .Username}}
|
|
{{template "user_style" .}}
|
|
<script type="text/javascript">var apiEndpoint = '{{.APIEndpoint}}';</script>
|
|
</head>
|
|
|
|
<body>
|
|
{{template "page_top" .}}
|
|
|
|
<h1>Welcome home, {{.Username}}!</h1>
|
|
|
|
<div class="page_content"><div class="limit_width">
|
|
<h2>Actions</h2>
|
|
<ul>
|
|
<li><a href="/user/change_password" class="button">Change my password</a></li>
|
|
<li><a href="/logout" class="button">Log out</a></li>
|
|
</ul>
|
|
|
|
<h2>Your most recently uploaded files:</h2>
|
|
<div class="highlight_dark">
|
|
{{$files := .PixelAPI.UserFiles 0 18}}
|
|
{{range $files.Files}}<!--
|
|
--><a class="file_button" href="/u/{{.ID}}" target="_blank">
|
|
<img src="{{$.APIEndpoint}}/file/{{.ID}}/thumbnail" alt="{{.Name}}" />
|
|
<span style="color: var(--highlight_color);">{{.Name}}</span>
|
|
<br/>
|
|
{{.DateUpload.Format "2006-01-02 15:04:05"}}
|
|
</a><!--
|
|
-->{{end}}
|
|
<br/>
|
|
<a href="/user/files" class="button">...All my files</a>
|
|
</div>
|
|
<h2>Your most recently created lists:</h2>
|
|
<div class="highlight_dark">
|
|
{{$lists := .PixelAPI.UserLists 0 18}}
|
|
{{range $lists.Lists}}<!--
|
|
--><a class="file_button" href="/l/{{.ID}}" target="_blank">
|
|
<img src="{{$.APIEndpoint}}/list/{{.ID}}/thumbnail" alt="{{.Title}}" />
|
|
<span style="color: var(--highlight_color);">{{.Title}}</span>
|
|
({{.FileCount}} Files)
|
|
<br/>
|
|
{{.DateCreated.Format "2006-01-02 15:04:05"}}
|
|
</a><!--
|
|
-->{{end}}
|
|
<br/>
|
|
<a href="/user/lists" class="button">...All my lists</a>
|
|
</div>
|
|
<br/><br/>
|
|
</div></div>
|
|
|
|
{{template "page_bottom" .}}
|
|
|
|
{{template "analytics"}}
|
|
</body>
|
|
</html>
|
|
{{end}}
|