65 lines
2.4 KiB
HTML
65 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<title>Rapid Application</title>
|
|
<meta name="description" content="">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="manifest" href="manifest.json">
|
|
<link rel="apple-touch-icon" href="images/icon.png">
|
|
<link rel="icon" type="image/icon" href="favicon.ico">
|
|
|
|
<link rel="stylesheet" href="vendor/grayscale/grayscale.min.css">
|
|
<!-- build:css css/styles.css -->
|
|
<link rel="stylesheet" href="css/main.css">
|
|
<!-- endbuild-->
|
|
|
|
<!-- build:js vendor/riot/riot.min.js -->
|
|
<script src="https://cdn.jsdelivr.net/npm/riot@4.13.2/riot+compiler.min.js" crossorigin="anonymous"></script>
|
|
<script>window.riot || document.write('<script src="vendor/riot/riot+compiler.min.js"><\/script>')</script>
|
|
<!-- endbuild-->
|
|
<script src="vendor/riot-route/route.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<!--[if lte IE 9]>
|
|
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
|
|
<![endif]-->
|
|
|
|
<!-- Add your site or application content here -->
|
|
<div class="layout">
|
|
<div class="content">
|
|
<Header class="component"></Header>
|
|
<div id="view"></div>
|
|
<Footer class="component"></Footer>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- build:js js/tags.min.js -->
|
|
<script type="riot" src="tags/layout/header.tag.html"></script>
|
|
<script type="riot" src="tags/layout/footer.tag.html"></script>
|
|
<script type="riot" src="tags/home.tag.html"></script>
|
|
<script type="riot" src="tags/about.tag.html"></script>
|
|
<!-- endbuild -->
|
|
|
|
<!-- mount all included tags -->
|
|
<script type="module">
|
|
riot.compile().then(() => {
|
|
riot.mount('.component', {});
|
|
});
|
|
</script>
|
|
|
|
<!-- build:js js/bundle.min.js -->
|
|
<script type="module" src="js/app.js"></script>
|
|
<!-- endbuild -->
|
|
|
|
<!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
|
|
<script>
|
|
window.ga=function(){ga.q.push(arguments)};ga.q=[];ga.l=+new Date;
|
|
ga('create','UA-XXXXX-Y','auto');ga('send','pageview')
|
|
</script>
|
|
<script src="https://www.google-analytics.com/analytics.js" async defer></script>
|
|
</body>
|
|
</html>
|