From f3e57b1094a9ca58f8ba4cb48a175540e228e5d1 Mon Sep 17 00:00:00 2001
From: Deployment Bot (from Travis CI) <deploy@travis-ci.org>
Date: Sat, 01 Feb 2020 00:27:29 +0000
Subject: [PATCH] Deploy kc0bfv/ticky_tacky_dark to github.com/kc0bfv/ticky_tacky_dark.git:gh-pages
---
redir/index.html | 80 +++++++++++++++++++++++-----------------
1 files changed, 46 insertions(+), 34 deletions(-)
diff --git a/redir/index.html b/redir/index.html
index 59ee6d7..f1a2575 100644
--- a/redir/index.html
+++ b/redir/index.html
@@ -2,35 +2,35 @@
<html lang="en-us">
<head><meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-<meta name="description" content="The demonstration page for the Hugo Ticky Tacky Dark theme.">
-<meta name="author" content="kc0bfv@gmail.com">
-<link rel="icon" href="/ticky_tacky_dark/favicon.ico">
-
<title>Ticky Tacky Dark - Theme Source</title>
+<meta name="description" content="The demonstration page for the Hugo Ticky Tacky Dark theme.">
+<meta name="author" content="Karl Sickendick">
+<link rel="icon" href="/ticky_tacky_dark/favicon.ico"><meta property="og:title" content="Theme Source" />
+<meta property="og:description" content="" />
+<meta property="og:type" content="article" />
+<meta property="og:url" content="https://kc0bfv.github.io/ticky_tacky_dark/redir/" />
+<meta property="og:image" content="https://kc0bfv.github.io/ticky_tacky_dark/img/header01.jpg"/>
+<meta property="article:published_time" content="2019-12-08T00:00:00+00:00" />
+<meta property="article:modified_time" content="2019-12-08T00:00:00+00:00" />
+<meta name="twitter:card" content="summary_large_image"/>
+<meta name="twitter:image" content="https://kc0bfv.github.io/ticky_tacky_dark/img/header01.jpg"/>
+<meta name="twitter:title" content="Theme Source"/>
+<meta name="twitter:description" content=""/>
<meta http-equiv="refresh" content="0;URL='https://github.com/kc0bfv/ticky_tacky_dark'" />
-
-
-
<meta name="robots" content="index,follow">
<meta name="referrer" content="origin-when-cross-origin">
-
-
-<meta name="generator" content="Hugo 0.63.1">
-
+<meta name="generator" content="Hugo 0.63.2" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
-
<link rel="stylesheet" href="/ticky_tacky_dark/css/myscreen.css" type="text/css" media="screen">
<link rel="stylesheet" href="/ticky_tacky_dark/css/myprint.css" type="text/css" media="print">
<meta name="theme-color" content="black">
-
-
<noscript>
<style>
@@ -42,6 +42,37 @@
</style>
</noscript>
+
+<script>
+ function toggleDisplay( elementID ) {
+ elem = document.getElementById(elementID);
+ if( elem.style.display == "none" ) {
+ elem.style.display = "block";
+ } else if( elem.style.display == "block" ) {
+ elem.style.display = "none";
+ }
+ }
+
+ function randomHeaderImg() {
+ let images = ["https://kc0bfv.github.io/ticky_tacky_dark/img/header01.jpg","https://kc0bfv.github.io/ticky_tacky_dark/img/header02.jpg"];
+ let img_ind = Math.ceil(Math.random() * images.length) - 1;
+ let sel_url = images[img_ind]
+ let img = new Image();
+ img.onload = function() {
+ function set_img(old_onload) {
+ let element = document.getElementById("headerimg");
+ element.src = sel_url;
+ if( old_onload ){ old_onload() }
+ }
+ if( document.readyState === "complete" ) { set_img() }
+ else { window.onload = set_img(window.onload) }
+ }
+ img.src = sel_url;
+ }
+ randomHeaderImg();
+
+
+</script>
</head>
<body>
<div id="full_body">
@@ -77,25 +108,6 @@
</div>
</div>
<footer id="footer" class="top-section">Webmaster: <a href="mailto:kc0bfv@gmail.com">kc0bfv@gmail.com</a>
-</footer><script>
- function toggleDisplay( elementID ) {
- elem = document.getElementById(elementID);
- if( elem.style.display == "none" ) {
- elem.style.display = "block";
- } else if( elem.style.display == "block" ) {
- elem.style.display = "none";
- }
- }
-
- function randomHeaderImg() {
- images = ["https://kc0bfv.github.io/ticky_tacky_dark/img/header01.jpg","https://kc0bfv.github.io/ticky_tacky_dark/img/header02.jpg"];
- i = Math.ceil(Math.random() * images.length) - 1;
- document.getElementById("headerimg").src = images[i];
- }
- window.onload = randomHeaderImg;
-
-
-</script>
-</div>
+</footer></div>
</body>
</html>
--
Gitblit v1.10.0