removed useless static files

This commit is contained in:
Timon Ringwald 2022-09-05 14:46:00 +02:00
parent 1580350216
commit d229558c22
10 changed files with 20 additions and 17 deletions

1
go.mod
View File

@ -4,6 +4,7 @@ go 1.18
require (
git.milar.in/milarin/slices v0.0.4
github.com/gorilla/mux v1.8.0
github.com/gorilla/sessions v1.2.1
golang.org/x/text v0.3.7
)

2
go.sum
View File

@ -1,5 +1,7 @@
git.milar.in/milarin/slices v0.0.4 h1:z92jgsKcnLPLfgXkTVCzH2XXesfXzhe0Osx+PkfCHVI=
git.milar.in/milarin/slices v0.0.4/go.mod h1:NOr53AOeur/qscu/FBj3lsFR262PNYBccLYSTCAXRk4=
github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI=
github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So=
github.com/gorilla/securecookie v1.1.1 h1:miw7JPhV+b/lAHSXz4qd/nN9jRiAFV5FwjeKyCS8BvQ=
github.com/gorilla/securecookie v1.1.1/go.mod h1:ra0sb63/xPlUeL+yeDciTfxMRAA+MP+HVt/4epWDjd4=
github.com/gorilla/sessions v1.2.1 h1:DHd3rPN5lE3Ts3D8rKkQ8x/0kqfeNmBAaiSi+o7FsgI=

23
main.go
View File

@ -18,6 +18,7 @@ import (
_ "embed"
"git.milar.in/milarin/slices"
"github.com/gorilla/mux"
"github.com/gorilla/sessions"
)
@ -50,17 +51,17 @@ func main() {
panic(err)
}
http.HandleFunc("/", handler)
http.HandleFunc("/customize", customize)
http.HandleFunc("/save-changes", saveChanges)
http.HandleFunc("/search", search)
http.HandleFunc("/style.css", ProvideFile("static/style.css", "text/css"))
http.HandleFunc("/customize.js", ProvideFile("static/customize.js", "application/javascript"))
http.HandleFunc("/icons.ttf", ProvideFile("static/icons.ttf", "font/ttf"))
http.HandleFunc("/transmission.png", ProvideFile("static/transmission.png", "image/png"))
http.HandleFunc("/pihole.svg", ProvideFile("static/pihole.svg", "image/svg+xml"))
http.HandleFunc("/gitea.png", ProvideFile("static/gitea.png", "image/png"))
if err := http.ListenAndServe(fmt.Sprintf("%s:%d", *intf, *port), nil); err != nil {
r := mux.NewRouter()
r.HandleFunc("/", handler)
r.HandleFunc("/customize", customize)
r.HandleFunc("/save-changes", saveChanges)
r.HandleFunc("/search", search)
r.PathPrefix("/static/").Handler(http.FileServer(http.FS(StaticFS)))
//http.HandleFunc("/style.css", ProvideFile("static/style.css", "text/css"))
//http.HandleFunc("/customize.js", ProvideFile("static/customize.js", "application/javascript"))
//http.HandleFunc("/icons.ttf", ProvideFile("static/icons.ttf", "font/ttf"))
if err := http.ListenAndServe(fmt.Sprintf("%s:%d", *intf, *port), r); err != nil {
panic(err)
}
}

BIN
startpage Executable file

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 88.32 129.93"><defs><linearGradient id="New_Gradient_Swatch_1" x1="2.71" x2="69.77" y1="20.04" y2="20.04" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#12b212"/><stop offset="1" stop-color="#0f0"/></linearGradient><style>.cls-2{fill:#980200}.cls-3{fill:red}</style></defs><title>NewVortex</title><path fill="url(#New_Gradient_Swatch_1)" d="M36.56 39.93C20.34 38.2 4 25.94 2.71 0c25.17 0 38.63 14.9 39.93 38.51 4.76-28.32 27.07-25 27.07-25 1.06 16.05-12.12 25.78-27.07 26.59-4.2-8.85-29.36-30.56-29.36-30.56a.07.07 0 00-.11.08s24.28 21.15 23.39 30.31"/><path d="M44.16 129.93c-1.57-.09-16.22-.65-17.11-17.11-.72-10 7.18-17.37 7.18-27.08C32.44 61.53 0 64.53 0 85.74a19.94 19.94 0 005.83 14.14L30 124.06a19.94 19.94 0 0014.14 5.83" class="cls-2"/><path d="M88.32 85.75c-.09 1.57-.65 16.22-17.11 17.11-10 .72-17.38-7.18-27.08-7.18-24.21 1.79-21.21 34.22 0 34.22a19.94 19.94 0 0014.14-5.83L82.46 99.9a19.94 19.94 0 005.83-14.14" class="cls-3"/><path d="M44.16 41.59c1.57.09 16.22.65 17.11 17.11.72 10-7.18 17.37-7.18 27.08 1.79 24.21 34.22 21.21 34.22 0a19.94 19.94 0 00-5.83-14.14L58.3 47.45a19.94 19.94 0 00-14.14-5.83" class="cls-2"/><path d="M.08 85.75c.09-1.57.65-16.22 17.11-17.11 10-.72 17.38 7.18 27.08 7.18 24.21-1.82 21.21-34.22 0-34.22a19.94 19.94 0 00-14.14 5.83L5.94 71.61A19.94 19.94 0 00.11 85.75" class="cls-3"/></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -2,10 +2,10 @@
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: url("/icons.ttf");
src: url("/static/icons.ttf");
src: local('Material Icons'),
local('MaterialIcons-Regular'),
url("/icons.ttf") format('truetype');
url("/static/icons.ttf") format('truetype');
}
.material-icons {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

View File

@ -5,8 +5,8 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ .Translate "Customize Homepage" }}</title>
<link rel="stylesheet" type="text/css" href="/style.css" />
<script src="/customize.js"></script>
<link rel="stylesheet" type="text/css" href="/static/style.css" />
<script src="/static/customize.js"></script>
<style>
:root {

View File

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ .Translate "Homepage" }}</title>
<link rel="stylesheet" type="text/css" href="/style.css" />
<link rel="stylesheet" type="text/css" href="/static/style.css" />
<style>
:root {