|
|
@@ -1,90 +0,0 @@
|
|
|
-<!doctype html>
|
|
|
-<head>
|
|
|
- <meta content="text/html;charset=utf-8" http-equiv="Content-Type">
|
|
|
- <meta content="utf-8" http-equiv="encoding">
|
|
|
- <meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
- <meta name="mobile-web-app-capable" content="yes">
|
|
|
- <meta name="theme-color" content="#dddddd">
|
|
|
- <link rel="icon" sizes="128x128" href="icon.png">
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- <style>
|
|
|
- * {
|
|
|
- margin: 0;
|
|
|
- padding: 0;
|
|
|
- }
|
|
|
- #splash {
|
|
|
- background-color: rgb(61, 61, 61);
|
|
|
- color: rgb(207, 207, 207);
|
|
|
- padding: 10%;
|
|
|
- margin: 0%;
|
|
|
- font-size: 4em;
|
|
|
- font-weight: bolder;
|
|
|
- padding-bottom: 200%;
|
|
|
- height: 100%;
|
|
|
- font-family: Arial, Helvetica, sans-serif;
|
|
|
- }
|
|
|
- </style>
|
|
|
-</head>
|
|
|
-
|
|
|
-
|
|
|
-<body>
|
|
|
- <div id="splash">
|
|
|
- loading
|
|
|
- </div>
|
|
|
-
|
|
|
-
|
|
|
- <div id="app" style="display: none">
|
|
|
- <nav>
|
|
|
- <!-- <img class="brand" src="icon-white.png"> -->
|
|
|
- <div class="logo">{{title}}</div>
|
|
|
- <template v-for="item in items" v-if="item.price == null">
|
|
|
- <div style="font-size:0.6em; margin-left:70%;">
|
|
|
- Updated: {{item.desc}}
|
|
|
- </div>
|
|
|
- </template>
|
|
|
-
|
|
|
- </nav>
|
|
|
-
|
|
|
-
|
|
|
- <div class="content">
|
|
|
-
|
|
|
- <template v-for="item in items" v-if="item.price != null && !item.is_price_final">
|
|
|
- <div class="panel">
|
|
|
- <div class="grid-auto">
|
|
|
- <div >
|
|
|
- <img :src="item.thumb" style="vertical-align:middle;">
|
|
|
- </div>
|
|
|
- <div><a :href="item.url">{{item.desc}}</a></div>
|
|
|
- <div>
|
|
|
- <div class="badge">{{item.price}} EUR</div>
|
|
|
- </div>
|
|
|
- <div>{{ts_to_remaining(item.timestamp)}}</div>
|
|
|
- <a v-bind:href="item.gcal">Add to cal</a>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
-
|
|
|
-
|
|
|
- <!-- {{articles}} -->
|
|
|
-
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-</body>
|
|
|
-
|
|
|
-<!-- Moment.js library -->
|
|
|
-<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
|
|
|
-
|
|
|
-<!-- moment-duration-format plugin -->
|
|
|
-<script src="https://cdnjs.cloudflare.com/ajax/libs/moment-duration-format/1.3.0/moment-duration-format.min.js"></script>
|
|
|
-
|
|
|
-<script defer src="https://cdn.jsdelivr.net/npm/vue@2.5.13/dist/vue.min.js"></script>
|
|
|
-<link rel="stylesheet" href="https://rawgit.com/woelper/lilac/master/lilac.min.css">
|
|
|
-<script defer src="app.js"></script>
|
|
|
-
|
|
|
-<style>
|
|
|
- :root {
|
|
|
- --main-color: #2e442f;
|
|
|
- }
|
|
|
-</style>
|