Last active
August 4, 2025 18:35
-
-
Save RobinBoers/b7b4ecd91a0ac4c18713c8b4c8bc8aa6 to your computer and use it in GitHub Desktop.
Caddy file browser template for ftp.dupunkto.org
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>Listing {{.Path}}</title> | |
<style> | |
@import url("https://cdn.geheimesite.nl/punkt.css"); | |
table { | |
padding: 4px 0 3px; | |
color: #414141; | |
} | |
td, | |
th, | |
tr { | |
padding: 0; | |
border: none; | |
} | |
tr:hover { | |
background-color: #eaeaea; | |
} | |
caption { | |
text-align: left; | |
font-weight: bold; | |
font-size: 1.6em; | |
} | |
caption, | |
td pre a { | |
padding: 7px 7px 7px 9px; | |
} | |
.back-arrow { | |
padding-right: 2px; | |
} | |
.location { | |
opacity: 0.8; | |
margin: 10px; | |
margin-top: 20px; | |
margin-bottom: 0; | |
font-size: 18px; | |
} | |
.tsize { | |
text-align: right; | |
padding-right: 8px; | |
} | |
.filetype, .filename { | |
font-family: monospace; | |
} | |
.filetype { | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
height: 100%; | |
} | |
.filename a { | |
display: block; | |
width: 100%; | |
} | |
</style> | |
</head> | |
<body> | |
{{if .CanGoUp}} | |
<p class="location"> | |
<span class="back-arrow">‹</span> | |
<a href=".."> | |
<script>document.write(location.protocol)</script>//{{ $.Host }}{{.Path}} | |
</a> | |
</p> | |
{{ end }} | |
<table> | |
<caption class="title"> | |
Listing | |
{{.Path}} | |
</caption> | |
<tbody> | |
{{range.Items}} | |
{{if .IsDir}} | |
<tr> | |
<td class="ttype"> | |
<span class="filetype">[d]</span> | |
</td> | |
<td class="tfile"> | |
<span class="filename"> | |
<a href="{{.URL}}"> | |
<script>document.write(location.protocol)</script>//{{$.Host}}/{{.Name}} | |
</a> | |
</span> | |
</td> | |
<td class="tsize"> | |
<span class="filesize">({{ $.NumFiles }} items)</span> | |
</td> | |
</tr> | |
{{end}} | |
{{end}} | |
{{range.Items}} | |
{{if not .IsDir}} | |
<tr> | |
<td class="ttype"><span class="filetype">[f]</span></td> | |
<td class="tfile"> | |
<span class="filename"> | |
<a href="{{.URL}}"> | |
<script>document.write(location.protocol)</script>//{{$.Host}}/{{.Name}} | |
</a> | |
</span> | |
</td> | |
<td class="tsize"> | |
<span class="filesize">{{.HumanSize}}</span> | |
</td> | |
</tr> | |
{{end}} | |
{{end}} | |
</tbody> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment