22 lines
398 B
HTML
22 lines
398 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="author" content="z3bra">
|
|
<meta name="viewport" content="width=device-width">
|
|
<title>Partage</title>
|
|
</head>
|
|
<body>
|
|
<h1>File uploaded!</h1>
|
|
<p>
|
|
Your files have been uploaded. Access and download it from the
|
|
following links:
|
|
</p>
|
|
<ul>
|
|
{{range .Links}}
|
|
<li><a href="{{.}}">{{.}}</a></li>
|
|
{{end}}
|
|
</ul>
|
|
</body>
|
|
</html>
|