|
@@ -4,14 +4,22 @@
|
|
|
<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 href="https://fonts.googleapis.com/css?family=Slabo+27px&display=swap" rel="stylesheet">
|
|
|
+ <link rel="stylesheet" href="https://rawgit.com/woelper/lilac/master/lilac.min.css">
|
|
|
+ <link rel="stylesheet" href="style.css">
|
|
|
+ <meta name="theme-color" content="#f7d723">
|
|
|
+ <meta name="apple-mobile-web-app-status-bar-style" content="#f7d723">
|
|
|
<link rel="icon" sizes="128x128" href="icon.png">
|
|
|
-
|
|
|
+ <link rel="apple-touch-icon" sizes="128x128" href="icon.png">
|
|
|
+
|
|
|
<style>
|
|
|
* {
|
|
|
margin: 0;
|
|
|
padding: 0;
|
|
|
}
|
|
|
+ body, title{
|
|
|
+ font-family: 'Slabo 27px', serif;
|
|
|
+ }
|
|
|
#splash {
|
|
|
background-color: rgb(61, 61, 61);
|
|
|
color: rgb(207, 207, 207);
|
|
@@ -46,10 +54,11 @@
|
|
|
<div class="panel" v-if="!ready">
|
|
|
Loading articles...
|
|
|
</div>
|
|
|
+
|
|
|
<template v-for="art in articles" v-if="art">
|
|
|
<div class="panel">
|
|
|
<div class="title">
|
|
|
- <a class="link" :href="getLink(art)">{{decodeURI(art.title.replace(/_/g, " "))}}</a>
|
|
|
+ <a class="link" :href="getLink(art)">{{decodeURI(art.title.replace(/_/g, " ").replace("?wprov=sfla1",""))}}</a>
|
|
|
</div>
|
|
|
<template v-if="compact">
|
|
|
<div class="summary">{{shortenParagraph(art.summary)}}</div>
|
|
@@ -74,9 +83,8 @@
|
|
|
<!-- <link rel="stylesheet" href="lilac.min.css"> -->
|
|
|
|
|
|
<!-- <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="https://www.gstatic.com/firebasejs/4.9.1/firebase.js"></script> -->
|
|
|
<!-- <script defer src="https://cdn.jsdelivr.net/npm/lodash@4.13.1/lodash.min.js"></script> -->
|
|
|
<script defer src="app.js"></script>
|
|
|
-<link rel="stylesheet" href="style.css">
|
|
|
<!-- <link href="https://fonts.googleapis.com/css?family=Alegreya+Sans|Sanchez" rel="stylesheet"> -->
|