23 lines
753 B
HTML
23 lines
753 B
HTML
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<title>A Template App</title>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<script async src="{{{appclient}}}"></script>
|
|
<link rel="stylesheet" type="text/css" href="styles/style.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div class="main">
|
|
<p id="apptext"></p>
|
|
</div>
|
|
</body>
|
|
|
|
<script defer src="scripts/app.js"></script>
|
|
<script async type="module" src="https://cdn.jsdelivr.net/npm/@freshworks/crayons@v4/dist/crayons/crayons.esm.js"></script>
|
|
<script async nomodule src="https://cdn.jsdelivr.net/npm/@freshworks/crayons@v4/dist/crayons/crayons.js"></script>
|
|
</html>
|