diff options
| author | Shulhan <ms@kilabit.info> | 2024-03-22 20:19:02 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2024-03-22 20:21:54 +0700 |
| commit | 4256714958ea08c922a4f044225053e35385d451 (patch) | |
| tree | e10996a7a1b4f1464082415f18e33b24a09946ed /_wui/doc/template.gohtml | |
| parent | 62bf073d3d5b55a7e76cf5d9cebefdc9c00cbcee (diff) | |
| download | awwan-4256714958ea08c922a4f044225053e35385d451.tar.xz | |
_wui: use shared static assets from Cloud Storage
The idea is to minimize noise in the logs that does not related to
page access and minimize binary size.
Diffstat (limited to '_wui/doc/template.gohtml')
| -rw-r--r-- | _wui/doc/template.gohtml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/_wui/doc/template.gohtml b/_wui/doc/template.gohtml index 5ca47d4..09a114d 100644 --- a/_wui/doc/template.gohtml +++ b/_wui/doc/template.gohtml @@ -6,11 +6,12 @@ <meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="theme-color" content="#375EAB" /> <title>{{.Title}}</title> - <link href="index.css" rel="stylesheet" type="text/css" media="all" /> + <link rel="stylesheet" type="text/css" media="all" href="index.css" /> + <link rel="stylesheet" type="text/css" media="all" href="//storage.googleapis.com/umum.kilabit.info/assets/fonts/go/stylesheet.css" /> </head> <body> - <img class="background" src="/maple-leaf-transparent-540.jpg" /> + <img class="background" src="//storage.googleapis.com/umum.kilabit.info/assets/images/maple-leaf-transparent-540.jpg" /> <div class="topbar"> <div class="topbar-left"> |
