diff --git a/main.go b/main.go
@@ -253,6 +253,9 @@ func main() {
r.HandleFunc("/fist.ico", func(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, conf.Webroot+"/fist.ico")
}).Methods("GET")
+ r.HandleFunc("/header.png", func(w http.ResponseWriter, r *http.Request) {
+ http.ServeFile(w, r, conf.Webroot+"/header.png")
+ }).Methods("GET")
http.Handle("/", r)
go Cull()
diff --git a/www/header.png b/www/header.png
Binary files differ.
diff --git a/www/index.html b/www/index.html
@@ -121,8 +121,8 @@
</head>
<body>
<div class="container">
- <!-- <img src="fist.png" width="280px" alt="supernets"> -->
- <h1 class="hf" style=" color: #660000; font-weight: 800; font-family: 'Black Ops One', cursive; margin-bottom: 0 !important; margin-top: 5rem !important;">HARDFILES</h1>
+ <img src="header.png" width="50%" alt="supernets" style="margin-top: 10rem;">
+ <!-- <h1 class="hf" style=" color: #660000; font-weight: 800; font-family: 'Black Ops One', cursive; margin-bottom: 0 !important; margin-top: 5rem !important;">HARDFILES</h1> -->
<h2 style="font-size: 1em; color: #ffffff; font-weight: 200;">curl -F file=@example.png https://hardfiles.org/</h1>
<form method="POST" class="subform" enctype="multipart/form-data">
<div class="file-upload" style="display: flex; justify-content: center; width: 25rem;">
| | |