thedocks/caddy/site/orlop/index.html

49 lines
1.8 KiB
HTML
Raw Normal View History

2022-04-12 22:34:11 +01:00
<html>
<head>
<meta charset="utf-8" />
<meta name="description" content="caddy test" />
<meta name="author" content="andy bunce." />
<title>Orlop domain</title>
2022-04-13 21:51:42 +01:00
<link rel="shortcut icon" href="icon.png"/>
2022-04-12 22:34:11 +01:00
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" rel="stylesheet">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@mdi/font@4.x/css/materialdesignicons.min.css" >
<link href="https://cdn.jsdelivr.net/npm/vuetify@2.6.x/dist/vuetify.min.css" rel="stylesheet">
<link href="app.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
</head>
<body>
<div id="app">
<v-app>
<v-main>
<div>
<span>Loaded at: {{ loaded }}</span><v-icon :title="loaded">mdi-clock</v-icon>
<span> {{ message }}</span>
<v-btn v-on:click="load">hits {{ hits }}</v-btn>
</div>
<v-container>
<v-row>
2022-04-13 21:51:42 +01:00
<!-- item={href,port,text} -->
2022-04-12 22:34:11 +01:00
<v-col v-for="item in links">
<v-card width="10em">
<v-card-title class="text-caption">
<a :href="item.href" :target="target">{{ item.text }}</a>
</v-card-title>
<v-card-actions>
<v-btn>?</v-btn>
<v-btn>{{ item.port }}</v-btn>
</v-card-actions>
</v-card>
</v-col>
</v-row>
</v-container>
<iframe name="srv" src="icon.png" width="100%"></iframe>
</v-main>
</v-app>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue@2.x/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vuetify@2.6.x/dist/vuetify.js"></script>
<script src="index.js"></script>
</body>
</html>