Skip to content
This repository has been archived by the owner on Jan 2, 2023. It is now read-only.

Change Style + Script #7

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ npm run dev
```

## Build for production

```bash
npm run build
```
95 changes: 82 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,86 @@
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <![endif]-->
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Listenbourg Map</title>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>ListenMap</title>
<meta name="description" content="Découvrer la carte du Listenbourg !" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200"
/>

<link rel="icon" type="image/x-icon" href="/listenbourg.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Serif+4:[email protected]&display=swap" rel="stylesheet">
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
<link rel="stylesheet" href="./css/theme.css" />
<link rel="stylesheet" href="./css/design-system.css" />
<link rel="stylesheet" href="./css/layout-outil-1.css" />
<link rel="stylesheet" href="./css/listenmap.css" />

<meta name="apple-mobile-web-app-title" content="ListenMap" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<link rel="apple-touch-icon" href="apple-touch-icon.png" />

<!-- favicon -->
<link rel="icon" type="image/png" href="favicon.png" />

<meta property="og:title" content="ListenMap" />
<meta property="og:site_name" content="ListenMap" />
<meta property="og:url" content="https://listenbourg.org/" />
<meta
property="og:description"
content="Découvrer la carte du Listenbourg !"
/>
<meta property="og:type" content="website" />
<meta property="og:image" content="https://i.ibb.co/rx1myKP/Listen-Map.png" />

<!-- theme color light and dark -->
<meta
name="theme-color"
content="#fff"
media="(prefers-color-scheme: light)"
/>
<meta
name="theme-color"
content="#28272b"
media="(prefers-color-scheme: dark)"
/>
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">
You are using an <strong>outdated</strong> browser. Please
<a href="#">upgrade your browser</a> to improve your experience.
</p>
<![endif]-->
<header class="header">
<a class="header-logo" href="./"></a>
<nav>
<a href="https://listenbourg.org" class="nav-btn important"
>listenbourg.org</a
>
</nav>
</header>
<main class="main">
<object
id="listenmap-svg"
type="image/svg+xml"
data="/src/assets/map_monochrome.svg"
style="width: 100%"
>
Your browser does not support SVG
</object>
<div id="tooltip" class="region-name"></div>
</main>
<footer class="footer">
© Listenbourg - 2022 -
<a href="https://twitter.com/DevListenbourg">Twitter</a> -
<a href="https://github.com/Listenbourg/Map">Github</a>
</footer>

<script type="module" src="/src/index.ts"></script>
</body>
</html>
Loading