tidy source files
separating logging and web serving into modules
This commit is contained in:
parent
3c38fa2f7f
commit
d40dec3566
4 changed files with 273 additions and 242 deletions
191
web/dir.html
Normal file
191
web/dir.html
Normal file
|
|
@ -0,0 +1,191 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Files in {{.Name}}</title>
|
||||
<style>
|
||||
html {
|
||||
background: #101010;
|
||||
color: #f0f0f0;
|
||||
font-family: "Monaspace Argon", monospace;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
body {
|
||||
width: min(calc(100% - 1em), 1000px);
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
tr:hover {
|
||||
background-color: #80808040;
|
||||
}
|
||||
|
||||
th {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
td {
|
||||
width: 1%;
|
||||
max-width: 500px;
|
||||
padding: 0.2em 0;
|
||||
}
|
||||
|
||||
table a {
|
||||
display: block;
|
||||
line-break: anywhere;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #b7fd49;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
color: white;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.readme {
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.readme h1, .readme h2, .readme h3,
|
||||
.readme h4, .readme h5, .readme h6 {
|
||||
color: #f0f0f0;
|
||||
margin-top: 1.2rem;
|
||||
}
|
||||
|
||||
.readme p, .readme li {
|
||||
line-height: 1.7;
|
||||
color: #d0d0d0;
|
||||
}
|
||||
|
||||
.readme a {
|
||||
color: #b7fd49;
|
||||
}
|
||||
|
||||
.readme a:hover {
|
||||
color: white;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.readme code {
|
||||
background: #1e1e1e;
|
||||
border: 1px solid #333;
|
||||
border-radius: 3px;
|
||||
padding: .1em, .4em;
|
||||
font-family: 'Monaspace Argon', monospace;
|
||||
font-size: .9em;
|
||||
color: #b7fd79;
|
||||
}
|
||||
|
||||
.readme pre {
|
||||
background: #1e1e1e;
|
||||
border: 3px solid #333;
|
||||
border-radius: 6px;
|
||||
padding: 1em;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.readme pre code {
|
||||
border: none;
|
||||
padding: 0;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.readme blockquote {
|
||||
border-left: 3px solid #b7fd49;
|
||||
margin: 0;
|
||||
padding-left: 1em;
|
||||
color: #a0a0a0;
|
||||
}
|
||||
|
||||
.readme hr {
|
||||
border-color: #333;
|
||||
}
|
||||
|
||||
.readme table {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.readme table td,
|
||||
.readme table th {
|
||||
border: 1px solid #333;
|
||||
padding: .3em .6em;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
footer {
|
||||
padding: 1em 0;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 700px) {
|
||||
body {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
td {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
td:last-of-type,
|
||||
th:last-of-type {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
{{if .CSS}}
|
||||
<style>{{.CSS}}</style>
|
||||
{{end}}
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<h1>Files in {{.Name}}</h1>
|
||||
<hr />
|
||||
<table>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Size</th>
|
||||
<th>Modified</th>
|
||||
</tr>
|
||||
{{if not .Root}}
|
||||
<tr>
|
||||
<td><a href="./..">../</a></td>
|
||||
<td>—</td>
|
||||
<td>—</td>
|
||||
</tr>
|
||||
{{end}} {{range .Files}}
|
||||
<tr>
|
||||
<td><a href="{{.URI}}">{{.Name}}</a></td>
|
||||
<td>{{if .IsDir}}—{{else}}{{.Size}}{{end}}</td>
|
||||
<td>{{.ModifiedDate}}</td>
|
||||
</tr>
|
||||
{{end}}
|
||||
</table>
|
||||
<hr />
|
||||
{{if .Readme}}
|
||||
<article class="readme">
|
||||
{{.Readme}}
|
||||
</article>
|
||||
{{end}}
|
||||
</main>
|
||||
<footer>
|
||||
<em
|
||||
>made with <span aria-label="love">♥</span> by ari melody and contributors, 2026
|
||||
<a
|
||||
href="https://codeberg.org/arimelody/indir"
|
||||
target="_blank"
|
||||
>[source]</a
|
||||
></em
|
||||
>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue