diff options
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 37 |
1 files changed, 32 insertions, 5 deletions
@@ -7,27 +7,54 @@ <meta name="description" content="Mapping of artwork by artist SPYO"> <meta name="keywords" content="spyo, spyoscape, copenhagen, grafitti, artwork, urban"> <meta name="robots" content="index, follow"> - <link rel="icon" type="image/x-icon" href="static/icons/pin.svg"> + <meta property="og:title" content="SPYOSCAPE"> + <meta property="og:description" content="Mapping of artwork by artist SPYO"> + <meta property="og:image" content="https://spyoscape.dk/static/images/dine-problemer-har-ingen-problemer.jpg"> + <meta property="og:url" content="https://spyoscape.dk"> + <link rel="icon" href="/static/icons/bird.svg" type="image/svg+xml"> + <!--<link rel="icon" href="/static/icons/bird-light.svg" media="(prefers-color-scheme: light)"> + <link rel="icon" href="/static/icons/bird-dark.svg" media="(prefers-color-scheme: dark)"> + <link rel="icon" type="image/x-icon" href="static/icons/bird.svg">--> <link rel="stylesheet" href="static/style/style.css"> <!-- MapLibre --> <script src="static/js/maplibre-gl.js"></script> <link href="static/style/maplibre-gl.css" rel="stylesheet" /> <link href="static/style/marker.css" rel="stylesheet" /> + <link rel="stylesheet" href="static/style/all.css"> </head> <body> <div class="wrapper grid"> <header> - <img class="banner" src="static/images/spyoscape.svg" alt="SPYOSCAPE"> - <a class="source-code" href="https://github.com/ztychr/spyoscape"><img src="static/icons/gh.svg"><br>fork me!</a> + <a href="/"><img class="banner" src="static/images/SPYOSCAPE.svg" alt="SPYOSCAPE"></a> + <a class="source-code" href="javascript:void(0);" class="icon" onclick="toggleNav()"> + <i class="fa-solid fa-bars"></i> + </a> + <div id="navlinks"> + <a href="/about.html"><i class="fa-solid fa-circle-info"></i> About</a> + <a href="https://gitlab.com/ztychr/spyoscape"><i class="fa-solid fa-code"></i> Source code</a> + </div> </header> <div id="map"></div> - - <ul id="links" class="map-link"></ul> + <ul id="links" class="map-link"> + <div class="filter-bar"> + <input type="text" id="search" onkeyup="searchList()" onfocus="handleFocus()" placeholder="Search..."> + <select id="sortSelect" onchange="sortList()"> + </div> + <option value="" disabled selected>Sort by</option> + <option value="az">A → Z</Option> + <Option value="za">Z → A</option> + <option value="newest">Newest</option> + <option value="oldest">Oldest</option> + </select> + <!--<button onclick="sortByName()">Sort by Name</button> + <button onclick="sortByDate()">Sort by Date</button>--> + </ul> </div> <script src="static/js/map-list.js"></script> <script src="static/js/map-helper-functions.js"></script> <script src="static/js/drawmap.js"></script> <script src="static/js/wheel-zoom.min.js"></script> + <script src="static/js/menu.js"></script> </body> </html> |
