1
0
dwelling-files/web/templates/index.jade

51 lines
2.6 KiB
Plaintext
Raw Normal View History

:go:func Index(mainSite, currentPath string, stats *files.DirStats, items *[]files.DirEntry, r *http.Request)
2022-06-27 04:38:09 +04:00
:go:import "dwelling-files/pkg/files"
:go:import "dwelling-files/pkg/utils"
doctype html
html(lang='en')
head
title Arav's dwelling / Files
meta(charset='utf-8')
meta(http-equiv='X-UA-Compatible' content='IE=edge')
meta(name='viewport' content='width=device-width, initial-scale=1.0')
meta(name='theme-color' content='#cd2682')
meta(name='description' content='My file share.')
2022-06-27 23:46:53 +04:00
link(rel='icon' type='image/svg+xml' href='/assets/img/favicon.svg' sizes='any')
2022-06-27 04:38:09 +04:00
link(href='/assets/css/main.css' rel='stylesheet')
script(src='/assets/js/main.js' defer='')
body
header
svg#logo(viewBox='0 -25 216 40')
text.logo Arav's dwelling
text.under(y='11') Welcome to my sacred place, wanderer
nav
a(href=mainSite) Back to main website
h1 Files
section#files
span#current-path!= currentPath
p Files: #{stats.Files} (#{stats.FilesSize}); Directories: #{stats.Directories}.
2022-06-27 04:38:09 +04:00
table
thead
tr
th Name
th Date
th Size
tbody
tr
td #[a(href="../") ../]
each item in *items
tr
td #[a(href=item.Link) #{item.Name}]
td!= utils.ToClientTimezone(item.Datetime, r).Format(files.FileDateFormat)
td= item.Size
section#usage
p In an overlay you can use your mouse wheel to change scale of a video or an image. An audio volume is being kept across files on a current page. No cookie or local storage are being used.
2022-06-27 04:38:09 +04:00
section#privacy
h2 Privacy statements
p I collect access logs that include access date and time, IP-address, User-Agent, referer URL that tells me where have you came from, request that you sent to me. In addition there are GeoIP information added based on your IP-address that includes country, region, and city for my convenience.
p This site makes use of JavaScript purely for convenient functionality, like being able to watch video, listen to music, and look images in an overlay without the need to open a file in a new tab or return back.
footer
| 2017—2022 Arav <#[a(href='mailto:me@arav.top') me@arav.top]>
div#overlay