Compare commits

...

2 commits

Author SHA1 Message Date
26c184f300 [mod] vuetify improvements 2022-04-16 22:21:53 +01:00
d183e775bc [fix] tvheadend 2022-04-16 15:53:03 +01:00
2 changed files with 31 additions and 24 deletions

View file

@ -101,7 +101,7 @@
} }
@tvheadend host tvheadend.orlop.duckdns.org @tvheadend host tvheadend.orlop.duckdns.org
handle @tvheadend { handle @tvheadend {
import n2plus 8891 import n2plus 9981
} }
@test host test.orlop.duckdns.org @test host test.orlop.duckdns.org
handle @test { handle @test {

View file

@ -14,32 +14,39 @@
<body> <body>
<div id="app"> <div id="app">
<v-app> <v-app>
<v-app-bar app>
<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-app-bar>
<v-main> <v-main>
<div>
<span>Loaded at: {{ loaded }}</span><v-icon :title="loaded">mdi-clock</v-icon> <v-container>
<span> {{ message }}</span> <v-row>
<v-btn v-on:click="load">hits {{ hits }}</v-btn> <v-col>
</div> <iframe name="srv" src="icon.png" width="100%"></iframe>
<v-container> </v-col>
<v-row> <!-- item={href,port,text} -->
<!-- item={href,port,text} --> <v-col >
<v-col v-for="item in links"> <v-card v-for="item in links" width="10em">
<v-card width="10em"> <v-card-title class="text-caption">
<v-card-title class="text-caption"> <a :href="item.href" :target="target">{{ item.text }}</a>
<a :href="item.href" :target="target">{{ item.text }}</a> </v-card-title>
</v-card-title> <v-card-actions>
<v-card-actions> <v-btn>?</v-btn>
<v-btn>?</v-btn> <v-btn>{{ item.port }}</v-btn>
<v-btn>{{ item.port }}</v-btn> </v-card-actions>
</v-card-actions> </v-card>
</v-card> </v-col>
</v-col> </v-row>
</v-row> </v-container>
</v-container>
<iframe name="srv" src="icon.png" width="100%"></iframe>
</v-main> </v-main>
</v-app> </v-app>
</div> </div>
<script src="https://cdn.jsdelivr.net/npm/vue@2.x/dist/vue.js"></script> <script src="https://cdn.jsdelivr.net/npm/vue@2.x/dist/vue.js"></script>