skip building hopglass
This commit is contained in:
parent
cd10452112
commit
4d65b6db08
50 changed files with 2716 additions and 3 deletions
|
@ -1,9 +1,7 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
let
|
||||
hopglass-fe = (pkgs.callPackage ./pkg-hopglass-fe.nix {
|
||||
conf = ./hopglass-frontend.config.json;
|
||||
} );
|
||||
hopglass-fe = ./hopglass-frontend;
|
||||
in
|
||||
{
|
||||
services.nginx.virtualHosts."map.hamburg.freifunk.net" = {
|
||||
|
|
254
hopglass-frontend/app.js
Normal file
254
hopglass-frontend/app.js
Normal file
File diff suppressed because one or more lines are too long
11
hopglass-frontend/css/ionicons.min.css
vendored
Normal file
11
hopglass-frontend/css/ionicons.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
47
hopglass-frontend/css/roboto-slab/roboto-slab-fontface.css
Normal file
47
hopglass-frontend/css/roboto-slab/roboto-slab-fontface.css
Normal file
|
@ -0,0 +1,47 @@
|
|||
@font-face {
|
||||
font-family: 'Roboto-Slab';
|
||||
src: url('../../fonts/roboto-slab/Roboto-Slab-Thin.woff2') format('woff2'), url('../../fonts/roboto-slab/Roboto-Slab-Thin.woff') format('woff');
|
||||
font-weight: 100;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto-Slab-Thin';
|
||||
src: url('../../fonts/roboto-slab/Roboto-Slab-Thin.woff2') format('woff2'), url('../../fonts/roboto-slab/Roboto-Slab-Thin.woff') format('woff');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto-Slab';
|
||||
src: url('../../fonts/roboto-slab/Roboto-Slab-Light.woff2') format('woff2'), url('../../fonts/roboto-slab/Roboto-Slab-Light.woff') format('woff');
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto-Slab-Light';
|
||||
src: url('../../fonts/roboto-slab/Roboto-Slab-Light.woff2') format('woff2'), url('../../fonts/roboto-slab/Roboto-Slab-Light.woff') format('woff');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto-Slab';
|
||||
src: url('../../fonts/roboto-slab/Roboto-Slab-Regular.woff2') format('woff2'), url('../../fonts/roboto-slab/Roboto-Slab-Regular.woff') format('woff');
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto-Slab-Regular';
|
||||
src: url('../../fonts/roboto-slab/Roboto-Slab-Regular.woff2') format('woff2'), url('../../fonts/roboto-slab/Roboto-Slab-Regular.woff') format('woff');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto-Slab';
|
||||
src: url('../../fonts/roboto-slab/Roboto-Slab-Bold.woff2') format('woff2'), url('../../fonts/roboto-slab/Roboto-Slab-Bold.woff') format('woff');
|
||||
font-weight: 700;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto-Slab-Bold';
|
||||
src: url('../../fonts/roboto-slab/Roboto-Slab-Bold.woff2') format('woff2'), url('../../fonts/roboto-slab/Roboto-Slab-Bold.woff') format('woff');
|
||||
}
|
143
hopglass-frontend/css/roboto/roboto-fontface.css
Normal file
143
hopglass-frontend/css/roboto/roboto-fontface.css
Normal file
|
@ -0,0 +1,143 @@
|
|||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
src: url('../../fonts/roboto/Roboto-Thin.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Thin.woff') format('woff');
|
||||
font-weight: 100;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto-Thin';
|
||||
src: url('../../fonts/roboto/Roboto-Thin.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Thin.woff') format('woff');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
src: url('../../fonts/roboto/Roboto-ThinItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-ThinItalic.woff') format('woff');
|
||||
font-weight: 100;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto-ThinItalic';
|
||||
src: url('../../fonts/roboto/Roboto-ThinItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-ThinItalic.woff') format('woff');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
src: url('../../fonts/roboto/Roboto-Light.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Light.woff') format('woff');
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto-Light';
|
||||
src: url('../../fonts/roboto/Roboto-Light.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Light.woff') format('woff');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
src: url('../../fonts/roboto/Roboto-LightItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-LightItalic.woff') format('woff');
|
||||
font-weight: 300;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto-LightItalic';
|
||||
src: url('../../fonts/roboto/Roboto-LightItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-LightItalic.woff') format('woff');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
src: url('../../fonts/roboto/Roboto-Regular.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Regular.woff') format('woff');
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto-Regular';
|
||||
src: url('../../fonts/roboto/Roboto-Regular.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Regular.woff') format('woff');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
src: url('../../fonts/roboto/Roboto-RegularItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-RegularItalic.woff') format('woff');
|
||||
font-weight: 400;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto-RegularItalic';
|
||||
src: url('../../fonts/roboto/Roboto-RegularItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-RegularItalic.woff') format('woff');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
src: url('../../fonts/roboto/Roboto-Medium.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Medium.woff') format('woff');
|
||||
font-weight: 500;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto-Medium';
|
||||
src: url('../../fonts/roboto/Roboto-Medium.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Medium.woff') format('woff');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
src: url('../../fonts/roboto/Roboto-MediumItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-MediumItalic.woff') format('woff');
|
||||
font-weight: 500;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto-MediumItalic';
|
||||
src: url('../../fonts/roboto/Roboto-MediumItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-MediumItalic.woff') format('woff');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
src: url('../../fonts/roboto/Roboto-Bold.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Bold.woff') format('woff');
|
||||
font-weight: 700;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto-Bold';
|
||||
src: url('../../fonts/roboto/Roboto-Bold.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Bold.woff') format('woff');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
src: url('../../fonts/roboto/Roboto-BoldItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-BoldItalic.woff') format('woff');
|
||||
font-weight: 700;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto-BoldItalic';
|
||||
src: url('../../fonts/roboto/Roboto-BoldItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-BoldItalic.woff') format('woff');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
src: url('../../fonts/roboto/Roboto-Black.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Black.woff') format('woff');
|
||||
font-weight: 900;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto-Black';
|
||||
src: url('../../fonts/roboto/Roboto-Black.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Black.woff') format('woff');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
src: url('../../fonts/roboto/Roboto-BlackItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-BlackItalic.woff') format('woff');
|
||||
font-weight: 900;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto-BlackItalic';
|
||||
src: url('../../fonts/roboto/Roboto-BlackItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-BlackItalic.woff') format('woff');
|
||||
}
|
BIN
hopglass-frontend/fonts/ionicons.eot
Normal file
BIN
hopglass-frontend/fonts/ionicons.eot
Normal file
Binary file not shown.
2230
hopglass-frontend/fonts/ionicons.svg
Normal file
2230
hopglass-frontend/fonts/ionicons.svg
Normal file
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 326 KiB |
BIN
hopglass-frontend/fonts/ionicons.ttf
Normal file
BIN
hopglass-frontend/fonts/ionicons.ttf
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/ionicons.woff
Normal file
BIN
hopglass-frontend/fonts/ionicons.woff
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto-slab/Roboto-Slab-Bold.woff
Normal file
BIN
hopglass-frontend/fonts/roboto-slab/Roboto-Slab-Bold.woff
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto-slab/Roboto-Slab-Bold.woff2
Normal file
BIN
hopglass-frontend/fonts/roboto-slab/Roboto-Slab-Bold.woff2
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto-slab/Roboto-Slab-Light.woff
Normal file
BIN
hopglass-frontend/fonts/roboto-slab/Roboto-Slab-Light.woff
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto-slab/Roboto-Slab-Light.woff2
Normal file
BIN
hopglass-frontend/fonts/roboto-slab/Roboto-Slab-Light.woff2
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto-slab/Roboto-Slab-Regular.woff
Normal file
BIN
hopglass-frontend/fonts/roboto-slab/Roboto-Slab-Regular.woff
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto-slab/Roboto-Slab-Regular.woff2
Normal file
BIN
hopglass-frontend/fonts/roboto-slab/Roboto-Slab-Regular.woff2
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto-slab/Roboto-Slab-Thin.woff
Normal file
BIN
hopglass-frontend/fonts/roboto-slab/Roboto-Slab-Thin.woff
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto-slab/Roboto-Slab-Thin.woff2
Normal file
BIN
hopglass-frontend/fonts/roboto-slab/Roboto-Slab-Thin.woff2
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-Black.woff
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-Black.woff
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-Black.woff2
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-Black.woff2
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-BlackItalic.woff
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-BlackItalic.woff
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-BlackItalic.woff2
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-BlackItalic.woff2
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-Bold.woff
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-Bold.woff
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-Bold.woff2
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-Bold.woff2
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-BoldItalic.woff
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-BoldItalic.woff
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-BoldItalic.woff2
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-BoldItalic.woff2
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-Light.woff
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-Light.woff
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-Light.woff2
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-Light.woff2
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-LightItalic.woff
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-LightItalic.woff
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-LightItalic.woff2
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-LightItalic.woff2
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-Medium.woff
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-Medium.woff
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-Medium.woff2
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-Medium.woff2
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-MediumItalic.woff
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-MediumItalic.woff
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-MediumItalic.woff2
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-MediumItalic.woff2
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-Regular.woff
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-Regular.woff
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-Regular.woff2
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-Regular.woff2
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-RegularItalic.woff
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-RegularItalic.woff
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-RegularItalic.woff2
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-RegularItalic.woff2
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-Thin.woff
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-Thin.woff
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-Thin.woff2
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-Thin.woff2
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-ThinItalic.woff
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-ThinItalic.woff
Normal file
Binary file not shown.
BIN
hopglass-frontend/fonts/roboto/Roboto-ThinItalic.woff2
Normal file
BIN
hopglass-frontend/fonts/roboto/Roboto-ThinItalic.woff2
Normal file
Binary file not shown.
BIN
hopglass-frontend/images/layers-2x.png
Normal file
BIN
hopglass-frontend/images/layers-2x.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
BIN
hopglass-frontend/images/layers.png
Normal file
BIN
hopglass-frontend/images/layers.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
BIN
hopglass-frontend/images/marker-icon-2x.png
Normal file
BIN
hopglass-frontend/images/marker-icon-2x.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.9 KiB |
BIN
hopglass-frontend/images/marker-icon.png
Normal file
BIN
hopglass-frontend/images/marker-icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
BIN
hopglass-frontend/images/marker-shadow.png
Normal file
BIN
hopglass-frontend/images/marker-shadow.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 797 B |
27
hopglass-frontend/index.html
Normal file
27
hopglass-frontend/index.html
Normal file
|
@ -0,0 +1,27 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, user-scalable=no">
|
||||
<link rel="stylesheet" href="css/ionicons.min.css?undefined">
|
||||
<link rel="stylesheet" href="css/roboto-slab/roboto-slab-fontface.css?undefined">
|
||||
<link rel="stylesheet" href="css/roboto/roboto-fontface.css?undefined">
|
||||
<link rel="stylesheet" href="style.css?undefined">
|
||||
<script src="app.js?undefined"></script>
|
||||
<script>
|
||||
console.log("Version: undefined")
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="loader">
|
||||
<p>
|
||||
Lade<br />
|
||||
<span class="spinner"></span><br />
|
||||
Karte & Knoten...
|
||||
</p>
|
||||
<noscript>
|
||||
<strong>JavaScript required</strong>
|
||||
</noscript>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
2
hopglass-frontend/style.css
Normal file
2
hopglass-frontend/style.css
Normal file
File diff suppressed because one or more lines are too long
1
hopglass-frontend/style.css.map
Normal file
1
hopglass-frontend/style.css.map
Normal file
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue