56 lines
2.2 KiB
HTML
56 lines
2.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="canonical" href="https://www.wompmacho.com"/>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="theme-color" content="#333333">
|
|
|
|
%sapper.base%
|
|
<!-- Bootstrap -->
|
|
<script>
|
|
|
|
</script>
|
|
<!-- Font Awesome icons (free version)-->
|
|
<script src="https://use.fontawesome.com/releases/v5.15.1/js/all.js" crossorigin="anonymous"></script>
|
|
<!-- Google fonts-->
|
|
<link href="https://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet" />
|
|
<link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet" />
|
|
|
|
<!-- Font Awesome icons (free version)-->
|
|
<link rel="stylesheet" href="css/bootstrap-grayscale-styles.css">
|
|
<link rel="stylesheet" href="css/global.css">
|
|
|
|
<link rel="manifest" href="manifest.json" crossorigin="use-credentials">
|
|
<link rel="icon" type="image/png" href="icons/favicon.png">
|
|
|
|
<!-- Sapper creates a <script> tag containing `src/client.js`
|
|
and anything else it needs to hydrate the app and
|
|
initialise the router -->
|
|
%sapper.scripts%
|
|
|
|
<!-- Sapper generates a <style> tag containing critical CSS
|
|
for the current page. CSS for the rest of the app is
|
|
lazily loaded when it precaches secondary pages -->
|
|
%sapper.styles%
|
|
|
|
<!-- This contains the contents of the <svelte:head> component, if
|
|
the current page has one -->
|
|
%sapper.head%
|
|
</head>
|
|
<body id="page-top">
|
|
<!-- The application will be rendered inside this element,
|
|
because `src/client.js` references it -->
|
|
<div id="sapper">%sapper.html%</div>
|
|
</body>
|
|
<style>
|
|
body{
|
|
background-color: #1e1e1e;
|
|
color: #ffffff;
|
|
}
|
|
</style>
|
|
|
|
<!-- jQuery, Popper.js, and Bootstrap JS -->
|
|
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
|
|
</html> |