32 lines
1023 B
HTML
32 lines
1023 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" type="image/png" href="/img/abang.png" />
|
|
<meta name="viewport" content="width=device-width initial-scale=1.0" />
|
|
<title>Anarchy Planet</title>
|
|
<!-- development version, includes helpful console warnings -->
|
|
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
|
|
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
|
|
crossorigin="anonymous"
|
|
/>
|
|
|
|
<script
|
|
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
|
|
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
|
|
crossorigin="anonymous"
|
|
></script>
|
|
|
|
<!-- development version, includes helpful console warnings -->
|
|
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="app">{{ message }}</div>
|
|
|
|
<script defer src="/main.js"></script>
|
|
</body>
|
|
</html>
|