thedocks/caddy/site/links/index.html

22 lines
606 B
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" />
2021-12-25 19:34:01 +00:00
<title>Caddy test</title>
2021-12-25 22:28:59 +00:00
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
2021-12-24 22:28:49 +00:00
</head>
<body>
2021-12-26 16:21:59 +00:00
<script type="text/html" id="cmp-link">
<div>{{ hello }}</div>
</script>
2021-12-25 22:28:59 +00:00
This is a test
<div>Page loaded at: {{now | date "Mon Jan 2 15:04:05 MST 2006"}}</div>
<div id="app">
<button v-on:click="load">hits {{ hits }}</button>
<div> {{ message }}</div>
<pre>{{ json }}</pre>
</div>
2021-12-26 16:21:59 +00:00
<my-link>foo</my-link>
2021-12-25 22:28:59 +00:00
<script src="index.js"></script>
2021-12-24 22:28:49 +00:00
</body>
</html>