Skip to content

Commit

Permalink
header
Browse files Browse the repository at this point in the history
  • Loading branch information
delorean committed Nov 16, 2023
1 parent 746058a commit 4a56cda
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Binary file added www/header.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 [email protected] 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;">
Expand Down

0 comments on commit 4a56cda

Please sign in to comment.