forked from tools/josh
1
0
Fork 0
josh/src/main/index.html

59 lines
2.4 KiB
HTML
Raw Normal View History

2018-11-28 19:51:48 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
2019-06-13 20:30:08 +02:00
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="application-name" content="FWDekker" />
<meta name="description" content="Felix W. Dekker's personal website" />
<meta name="theme-color" content="#0033cc" />
<meta property="og:url" content="https://fwdekker.com/" />
<meta property="og:title" content="FWDekker" />
2018-11-28 19:51:48 +01:00
<meta property="og:description" content="Felix W. Dekker's personal website">
2019-06-13 20:30:08 +02:00
<meta property="og:locale" content="en_GB" />
2018-11-28 19:51:48 +01:00
<title>FWDekker</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link rel="apple-touch-icon" href="img/icon_ios.png" />
<link rel="manifest" href="manifest.json">
2019-06-13 20:30:08 +02:00
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,700" rel="stylesheet" />
<link href="css/main.css" rel="stylesheet" />
2018-11-28 19:51:48 +01:00
</head>
<body>
<main>
<!-- Comment out newlines and indents because of `white-space: pre-wrap` in CSS. -->
<div id="terminal"><!--
--><noscript><!--
-->This website does not function if JavaScript is disabled.<!--
-->Please check the <a href="https://www.enable-javascript.com/"><!--
-->instructions how to enable JavaScript in your web browser</a>.<!--
--></noscript><!--
--><div id="ie-warning" style="display:none;"><!--
-->This website does not function with Internet Explorer.<!--
-->Please install a newer browser such as<!--
--><a href="https://www.microsoft.com/en-us/windows/microsoft-edge">Microsoft Edge</a>.<!--
--></div><!--
--><span id="terminalOutput"></span><!--
--><span id="terminalInput"><!--
--><span id="terminalInputPrefix"></span><!--
--><span id="terminalInputField" contenteditable="true" autocapitalize="none"
spellcheck="false"></span><!--
--></span><!--
--><span id="terminalSuggestions"></span><!--
--></div>
</main>
2018-11-28 19:51:48 +01:00
<script>
if (/MSIE|Trident/.test(window.navigator.userAgent))
document.getElementById("ie-warning").style.display = "block";
if ("serviceWorker" in navigator)
window.addEventListener("load", () => navigator.serviceWorker.register("sw.js"));
</script>
<script type="module" src="bundle.js"></script>
2018-11-28 19:51:48 +01:00
</body>
</html>