31 lines
812 B
HTML
31 lines
812 B
HTML
{{define "user_files"}}<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{{template "meta_tags" "Files"}}
|
|
<script type="text/javascript">var apiEndpoint = '{{.APIEndpoint}}';</script>
|
|
</head>
|
|
|
|
<body>
|
|
{{template "menu" .}}
|
|
<div class="highlight_dark border_bottom">
|
|
These files were uploaded while logged in to your pixeldrain account,
|
|
<a href="/history">click here</a> to view files uploaded anonymously
|
|
in this browser.
|
|
</div>
|
|
|
|
<br/>
|
|
{{$files := .PixelAPI.UserFiles 0 1000}}
|
|
{{range $files.Files}}
|
|
<a class="file_button" href="/u/{{.ID}}" target="_blank">
|
|
<img src="{{$.APIEndpoint}}/file/{{.ID}}/thumbnail" alt="{{.FileName}}" />
|
|
<span style="color: var(--highlight_color);">{{.FileName}}</span>
|
|
<br/>
|
|
{{.DateUpload}}
|
|
</a>
|
|
{{end}}
|
|
|
|
{{template "analytics"}}
|
|
</body>
|
|
</html>
|
|
{{end}}
|