-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (84 loc) · 4.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>REMLAB Web Mech Designer</title>
<meta name="title" content="REMLAB Web Mech Designer">
<meta name="description" content="A web app that allows for the creation of BattleTech Mechs.">
<meta name="author" content="Ted Balmer | MarchTwenty.com">
<meta name="application-name" content="REMLAB">
<meta name="theme-color" content="#ffffff">
<meta name="format-detection" content="telephone=no">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="REMLAB">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="white">
<link rel="manifest" href="https://remlab.netlify.app/assets/icons/site.webmanifest">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/icons/apple-touch-icon.png">
<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<meta property="og:type" content="website">
<meta property="og:url" content="https://github.com/midkiffaries/remlab5">
<meta property="og:title" content="REMLAB Web Mech Designer">
<meta property="og:description" content="A web app that allows for the creation of BattleTech Mechs.">
<meta property="og:image" content="https://remlab.netlify.app/assets/icons/remlab-social.jpg">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://github.com/midkiffaries/remlab5">
<meta property="twitter:title" content="REMLAB Web Mech Designer">
<meta property="twitter:description" content="A web app that allows for the creation of BattleTech Mechs.">
<meta property="twitter:image" content="https://remlab.netlify.app/assets/icons/remlab-social.jpg">
<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=Quicksand:wght@300;400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/assets/css/tedillize.css" type="text/css" media="all">
<link rel="stylesheet" href="/assets/css/layout.css" type="text/css" media="all">
<link rel="stylesheet" href="/assets/css/style.css" type="text/css" media="all">
</head>
<body class="body" onload="updateForm()">
<!-- Dev notice -->
<div role="alert" style="position: fixed; left: 0; background: #000; color: #fff; padding: 0.4em; z-index: 100">Remlab is still in active development.</div>
<form id="frmMain" name="form" onchange="updateForm()" onsubmit="event.preventDefault()">
<div class="page-container">
<!-- Header / Side Bar -->
<header class="page-header" id="Header">
<h1 class="page-title"><img src="assets/images/logo.svg" alt="REMLAB Web Mech Designer" loading="lazy" decoding="async"></h1>
<!-- Side Bar -->
<aside class="page-sidebar" id="SideBar"></aside>
<!-- Side Bar Menu -->
<section class="page-header-menu">
<menu role="list">
<li><button id="btnHelp" aria-label="Help Page" class="button-gray">Help</button></li>
<li><button id="btnAbout" aria-label="About Page" class="button-gray">About</button></li>
<li><button id="btnDarkMode" aria-label="Dark mode switch" class="button-gray light-switch"> </button></li>
</menu>
<div class="version">Version <span id="AppVersion">5.0</span></div>
</section>
</header>
<!-- Page Content -->
<main class="page-main" role="main">
<noscript><h3>Attention: REMLAB requires JavaScript enabled in your browser to function.</h3></noscript>
<!-- Main Grid -->
<div id="SectionsGrid" class="page-grid"></div>
</main>
</div>
</form>
<!-- Footer -->
<footer class="page-footer">
<blockquote class="quote"><q>Life is cheap. BattleMechs are expensive.</q> - <cite>Irain BattleMechs Ltd.</cite></blockquote>
<div class="social-links">
<a href="https://github.com/midkiffaries/remlab5" target="_blank" class="icon-github">GitHub Project</a>
<a href="https://www.facebook.com/remlabmechdesigner/" target="_blank" class="icon-facebook">Facebook Page</a>
</div>
<address class="credits">Developed by <a href="http://www.marchtwenty.com/" target="_blank" class="icon-m20">Ted Balmer @ MarchTwenty</a> in <time datetime="2021">2021</time></address>
</footer>
<!-- Scripts -->
<script src="/assets/js/base.js"></script>
<script src="/assets/js/tables.js"></script>
<script src="/assets/js/mechdata.js"></script>
<script src="/assets/js/mechpage.js"></script>
<script src="/assets/js/modals.js"></script>
<script src="/assets/js/mechprintout.js"></script>
<script src="/assets/js/pageparsers.js"></script>
</body>
</html>