thedocks/caddy/site/links/index.html

29 lines
1.2 KiB
HTML
Raw Normal View History

2021-12-24 22:28:49 +00:00
<html>
<head>
2021-12-25 22:28:59 +00:00
<meta charset="utf-8" />
2022-01-07 20:48:31 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="caddy test" />
<meta name="author" content="andy bunce." />
<title>Caddy test</title>
<link rel="shortcut icon" href="icon.png"/>
2022-01-07 20:55:01 +00:00
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/@mdi/font@6.x/css/materialdesignicons.min.css" rel="stylesheet">
<link href="//unpkg.com/vuetify@2.6.2/dist/vuetify.min.css" rel="stylesheet" type="text/css"/>
2021-12-24 22:28:49 +00:00
</head>
<body>
2022-01-07 20:48:31 +00:00
2021-12-25 22:28:59 +00:00
<div id="app">
2022-01-07 21:15:08 +00:00
<span>Loaded at: {{ loaded }}</span>
2021-12-26 16:33:05 +00:00
<ul>
2021-12-26 16:50:29 +00:00
<li v-for="item in json"><a :href="item.href">{{ item.text }}</a></li>
2021-12-26 16:33:05 +00:00
</ul>
2021-12-25 22:28:59 +00:00
2021-12-26 16:50:29 +00:00
<button v-on:click="load">hits {{ hits }}</button>
<div> {{ message }}</div>
<pre>{{ json }}</pre>
2022-01-07 20:48:31 +00:00
</div>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js" crossorigin="anonymous"></script>
<script src="//unpkg.com/vuetify@2.6.2/dist/vuetify.min.js" crossorigin="anonymous"></script>
<script src="index.js"></script>
2021-12-24 22:28:49 +00:00
</body>
</html>