mirror of https://github.com/kc0bfv/ticky_tacky_dark.git

Deployment Bot (from Travis CI)
01.27.2020 f3e57b1094a9ca58f8ba4cb48a175540e228e5d1
Deploy kc0bfv/ticky_tacky_dark to github.com/kc0bfv/ticky_tacky_dark.git:gh-pages
2 files added
8 files modified
793 ■■■■■ changed files
404.html 111 ●●●●● patch | view | raw | blame | history
about/index.html 103 ●●●●● patch | view | raw | blame | history
emoji-support/index.html 102 ●●●●● patch | view | raw | blame | history
favicon.ico patch | view | raw | blame | history
index.html 78 ●●●●● patch | view | raw | blame | history
index.xml 14 ●●●●● patch | view | raw | blame | history
markdown-syntax/index.html 102 ●●●●● patch | view | raw | blame | history
math-typesetting/index.html 102 ●●●●● patch | view | raw | blame | history
redir/index.html 80 ●●●●● patch | view | raw | blame | history
rich-content/index.html 101 ●●●●● patch | view | raw | blame | history
404.html
New file
@@ -0,0 +1,111 @@
<!DOCTYPE html>
<html lang="en-us">
    <head><meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Ticky Tacky Dark</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="404 Page not found" />
<meta property="og:description" content="The demonstration page for the Hugo Ticky Tacky Dark theme." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://kc0bfv.github.io/ticky_tacky_dark/404.html" />
<meta property="og:image" content="https://kc0bfv.github.io/ticky_tacky_dark/img/header01.jpg"/>
<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="404 Page not found"/>
<meta name="twitter:description" content="The demonstration page for the Hugo Ticky Tacky Dark theme."/>
<meta name="robots" content="index,follow">
<meta name="referrer" content="origin-when-cross-origin">
<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>
            #headerimg {
                background-image: url(https://kc0bfv.github.io/ticky_tacky_dark/img/header01.jpg);
                background-size: cover;
            }
    </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">
            <header id="header" class="top-section"><img id="headerimg" class="veryrounded" src="/ticky_tacky_dark/img/header_template.png" alt="">
</header>
            <div id="content" class="top-section">
                <div class="container-fluid">
                    <div class="row">
                        <div class="col col-12 col-sm-8 col-lg-9">
                            <main class="row">
    <div class="col-12 col-sm-5"></div>
    <div class="col-12 col-sm-7">
        <h1>404</h1>
        <p>Content Not Found</p>
    </div>
                            </main>
                        </div>
                        <nav class="col col-8 offset-2 col-sm-4 offset-sm-0 col-lg-3"><div class="box morerounded">
    <ul class="navbar">
            <li><a href="https://kc0bfv.github.io/ticky_tacky_dark/">Main</a></li>
            <li><a href="https://kc0bfv.github.io/ticky_tacky_dark/about/">About</a></li>
            <li><a href="https://github.com/kc0bfv/ticky_tacky_dark">Theme Source</a></li>
            <li><a href="https://kc0bfv.github.io/ticky_tacky_dark/markdown-syntax/">Markdown Syntax Guide</a></li>
            <li><a href="https://kc0bfv.github.io/ticky_tacky_dark/emoji-support/">Emoji Support</a></li>
            <li><a href="https://kc0bfv.github.io/ticky_tacky_dark/rich-content/">Rich Content</a></li>
            <li><a href="https://kc0bfv.github.io/ticky_tacky_dark/math-typesetting/">Math Typesetting</a></li>
    </ul>
</div>
</nav>
                    </div>
                </div>
            </div>
            <footer id="footer" class="top-section">Webmaster: <a href="mailto:kc0bfv@gmail.com">kc0bfv@gmail.com</a>
</footer></div>
    </body>
</html>
about/index.html
@@ -2,33 +2,36 @@
<html lang="en-us">
    <head><meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Ticky Tacky Dark - About</title>
<meta name="description" content="Hugo, the world’s fastest framework for building websites">
<meta name="author" content="Hugo Authors">
<link rel="icon" href="/ticky_tacky_dark/favicon.ico">
<link rel="icon" href="/ticky_tacky_dark/favicon.ico"><meta property="og:title" content="About" />
<meta property="og:description" content="Hugo, the world’s fastest framework for building websites" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://kc0bfv.github.io/ticky_tacky_dark/about/" />
<meta property="og:image" content="https://kc0bfv.github.io/ticky_tacky_dark/img/awesome01.jpg" />
<meta property="og:image" content="https://kc0bfv.github.io/ticky_tacky_dark/img/awesome02.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/awesome01.jpg"/>
<title>Ticky Tacky Dark - About</title>
<meta name="twitter:title" content="About"/>
<meta name="twitter:description" content="Hugo, the world’s fastest framework for building websites"/>
<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>
        
@@ -45,6 +48,55 @@
        
    </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();
    function randomSideImg() {
        let images = ["https://kc0bfv.github.io/ticky_tacky_dark/img/awesome01.jpg","https://kc0bfv.github.io/ticky_tacky_dark/img/awesome02.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("sideimage");
                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;
    }
    randomSideImg();
</script>
</head>
    <body>
        <div id="full_body">
@@ -95,33 +147,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;
    function randomSideAndHeaderImg() {
        randomHeaderImg();
        images = ["https://kc0bfv.github.io/ticky_tacky_dark/img/awesome01.jpg","https://kc0bfv.github.io/ticky_tacky_dark/img/awesome02.jpg"];
        i = Math.ceil(Math.random() * images.length) - 1;
        document.getElementById("sideimage").src = images[i];
    }
    window.onload = randomSideAndHeaderImg;
</script>
</div>
</footer></div>
    </body>
</html>
emoji-support/index.html
@@ -2,33 +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">
<title>Ticky Tacky Dark - Emoji Support</title>
<meta name="description" content="Guide to emoji usage in Hugo">
<meta name="author" content="Hugo Authors">
<link rel="icon" href="/ticky_tacky_dark/favicon.ico">
<link rel="icon" href="/ticky_tacky_dark/favicon.ico"><meta property="og:title" content="Emoji Support" />
<meta property="og:description" content="Guide to emoji usage in Hugo" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://kc0bfv.github.io/ticky_tacky_dark/emoji-support/" />
<meta property="og:image" content="https://kc0bfv.github.io/ticky_tacky_dark/img/cool01.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/cool01.jpg"/>
<title>Ticky Tacky Dark - Emoji Support</title>
<meta name="twitter:title" content="Emoji Support"/>
<meta name="twitter:description" content="Guide to emoji usage in Hugo"/>
<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>
        
@@ -45,6 +47,55 @@
        
    </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();
    function randomSideImg() {
        let images = ["https://kc0bfv.github.io/ticky_tacky_dark/img/cool01.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("sideimage");
                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;
    }
    randomSideImg();
</script>
</head>
    <body>
        <div id="full_body">
@@ -97,33 +148,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;
    function randomSideAndHeaderImg() {
        randomHeaderImg();
        images = ["https://kc0bfv.github.io/ticky_tacky_dark/img/cool01.jpg"];
        i = Math.ceil(Math.random() * images.length) - 1;
        document.getElementById("sideimage").src = images[i];
    }
    window.onload = randomSideAndHeaderImg;
</script>
</div>
</footer></div>
    </body>
</html>
favicon.ico
Binary files differ
index.html
@@ -2,33 +2,37 @@
<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="Hugo Authors">
<link rel="icon" href="/ticky_tacky_dark/favicon.ico">
<title>Ticky Tacky Dark - Main</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="Main" />
<meta property="og:description" content="The demonstration page for the Hugo Ticky Tacky Dark theme." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://kc0bfv.github.io/ticky_tacky_dark/" />
<meta property="og:image" content="https://kc0bfv.github.io/ticky_tacky_dark/img/header01.jpg"/>
<meta property="og:updated_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="Main"/>
<meta name="twitter:description" content="The demonstration page for the Hugo Ticky Tacky Dark theme."/>
<meta name="robots" content="index,follow">
<meta name="referrer" content="origin-when-cross-origin">
<meta name="generator" content="Hugo 0.63.2" />
<meta name="generator" content="Hugo 0.63.1">
<link href="/ticky_tacky_dark/index.xml" rel="alternate" type="application/rss+xml" title="Ticky Tacky Dark" />
<link href="/ticky_tacky_dark/index.xml" rel="feed" type="application/rss+xml" title="Ticky Tacky Dark" />
<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>
        
@@ -40,6 +44,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">
@@ -112,25 +147,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>
index.xml
@@ -6,6 +6,8 @@
    <description>Recent content in Main on Ticky Tacky Dark</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    <managingEditor>kc0bfv@gmail.com (Karl Sickendick)</managingEditor>
    <webMaster>kc0bfv@gmail.com (Karl Sickendick)</webMaster>
    <lastBuildDate>Sun, 08 Dec 2019 00:00:00 +0000</lastBuildDate>
    
    <atom:link href="https://kc0bfv.github.io/ticky_tacky_dark/index.xml" rel="self" type="application/rss+xml" />
@@ -15,7 +17,7 @@
      <title>About</title>
      <link>https://kc0bfv.github.io/ticky_tacky_dark/about/</link>
      <pubDate>Sun, 08 Dec 2019 00:00:00 +0000</pubDate>
      <author>kc0bfv@gmail.com (Karl Sickendick)</author>
      <guid>https://kc0bfv.github.io/ticky_tacky_dark/about/</guid>
      <description>Written in Go, Hugo is an open source static site generator available under the Apache Licence 2.0. Hugo supports TOML, YAML and JSON data file types, Markdown and HTML content files and uses shortcodes to add rich content. Other notable features are taxonomies, multilingual mode, image processing, custom output formats, HTML/CSS/JS minification and support for Sass SCSS workflows.
Hugo makes use of a variety of open source projects including:
@@ -26,7 +28,7 @@
      <title>Theme Source</title>
      <link>https://kc0bfv.github.io/ticky_tacky_dark/redir/</link>
      <pubDate>Sun, 08 Dec 2019 00:00:00 +0000</pubDate>
      <author>kc0bfv@gmail.com (Karl Sickendick)</author>
      <guid>https://kc0bfv.github.io/ticky_tacky_dark/redir/</guid>
      <description></description>
    </item>
@@ -35,7 +37,7 @@
      <title>Markdown Syntax Guide</title>
      <link>https://kc0bfv.github.io/ticky_tacky_dark/markdown-syntax/</link>
      <pubDate>Sun, 08 Dec 2019 00:00:00 +0000</pubDate>
      <author>kc0bfv@gmail.com (Karl Sickendick)</author>
      <guid>https://kc0bfv.github.io/ticky_tacky_dark/markdown-syntax/</guid>
      <description>&lt;p&gt;This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.&lt;/p&gt;</description>
    </item>
@@ -44,7 +46,7 @@
      <title>Emoji Support</title>
      <link>https://kc0bfv.github.io/ticky_tacky_dark/emoji-support/</link>
      <pubDate>Sun, 08 Dec 2019 00:00:00 +0000</pubDate>
      <author>kc0bfv@gmail.com (Karl Sickendick)</author>
      <guid>https://kc0bfv.github.io/ticky_tacky_dark/emoji-support/</guid>
      <description>&lt;p&gt;Emoji can be enabled in a Hugo project in a number of ways.&lt;/p&gt;</description>
    </item>
@@ -53,7 +55,7 @@
      <title>Rich Content</title>
      <link>https://kc0bfv.github.io/ticky_tacky_dark/rich-content/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <author>kc0bfv@gmail.com (Karl Sickendick)</author>
      <guid>https://kc0bfv.github.io/ticky_tacky_dark/rich-content/</guid>
      <description>&lt;p&gt;Hugo ships with several &lt;a href=&#34;https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes&#34;&gt;Built-in Shortcodes&lt;/a&gt; for rich content, along with a &lt;a href=&#34;https://gohugo.io/about/hugo-and-gdpr/&#34;&gt;Privacy Config&lt;/a&gt; and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.&lt;/p&gt;</description>
    </item>
@@ -62,7 +64,7 @@
      <title>Math Typesetting</title>
      <link>https://kc0bfv.github.io/ticky_tacky_dark/math-typesetting/</link>
      <pubDate>Fri, 08 Mar 2019 00:00:00 +0000</pubDate>
      <author>kc0bfv@gmail.com (Karl Sickendick)</author>
      <guid>https://kc0bfv.github.io/ticky_tacky_dark/math-typesetting/</guid>
      <description>&lt;p&gt;Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.&lt;/p&gt;</description>
    </item>
markdown-syntax/index.html
@@ -2,33 +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">
<title>Ticky Tacky Dark - Markdown Syntax Guide</title>
<meta name="description" content="Sample article showcasing basic Markdown syntax and formatting for HTML elements.">
<meta name="author" content="Hugo Authors">
<link rel="icon" href="/ticky_tacky_dark/favicon.ico">
<link rel="icon" href="/ticky_tacky_dark/favicon.ico"><meta property="og:title" content="Markdown Syntax Guide" />
<meta property="og:description" content="Sample article showcasing basic Markdown syntax and formatting for HTML elements." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://kc0bfv.github.io/ticky_tacky_dark/markdown-syntax/" />
<meta property="og:image" content="https://kc0bfv.github.io/ticky_tacky_dark/img/interesting01.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/interesting01.jpg"/>
<title>Ticky Tacky Dark - Markdown Syntax Guide</title>
<meta name="twitter:title" content="Markdown Syntax Guide"/>
<meta name="twitter:description" content="Sample article showcasing basic Markdown syntax and formatting for HTML elements."/>
<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>
        
@@ -45,6 +47,55 @@
        
    </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();
    function randomSideImg() {
        let images = ["https://kc0bfv.github.io/ticky_tacky_dark/img/interesting01.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("sideimage");
                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;
    }
    randomSideImg();
</script>
</head>
    <body>
        <div id="full_body">
@@ -215,33 +266,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;
    function randomSideAndHeaderImg() {
        randomHeaderImg();
        images = ["https://kc0bfv.github.io/ticky_tacky_dark/img/interesting01.jpg"];
        i = Math.ceil(Math.random() * images.length) - 1;
        document.getElementById("sideimage").src = images[i];
    }
    window.onload = randomSideAndHeaderImg;
</script>
</div>
</footer></div>
    </body>
</html>
math-typesetting/index.html
@@ -2,33 +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">
<title>Ticky Tacky Dark - Math Typesetting</title>
<meta name="description" content="A brief guide to setup KaTeX">
<meta name="author" content="Hugo Authors">
<link rel="icon" href="/ticky_tacky_dark/favicon.ico">
<link rel="icon" href="/ticky_tacky_dark/favicon.ico"><meta property="og:title" content="Math Typesetting" />
<meta property="og:description" content="A brief guide to setup KaTeX" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://kc0bfv.github.io/ticky_tacky_dark/math-typesetting/" />
<meta property="og:image" content="https://kc0bfv.github.io/ticky_tacky_dark/img/math01.jpg" />
<meta property="article:published_time" content="2019-03-08T00:00:00+00:00" />
<meta property="article:modified_time" content="2019-03-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/math01.jpg"/>
<title>Ticky Tacky Dark - Math Typesetting</title>
<meta name="twitter:title" content="Math Typesetting"/>
<meta name="twitter:description" content="A brief guide to setup KaTeX"/>
<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>
        
@@ -45,6 +47,55 @@
        
    </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();
    function randomSideImg() {
        let images = ["https://kc0bfv.github.io/ticky_tacky_dark/img/math01.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("sideimage");
                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;
    }
    randomSideImg();
</script>
</head>
    <body>
        <div id="full_body">
@@ -110,33 +161,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;
    function randomSideAndHeaderImg() {
        randomHeaderImg();
        images = ["https://kc0bfv.github.io/ticky_tacky_dark/img/math01.jpg"];
        i = Math.ceil(Math.random() * images.length) - 1;
        document.getElementById("sideimage").src = images[i];
    }
    window.onload = randomSideAndHeaderImg;
</script>
</div>
</footer></div>
    </body>
</html>
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>
rich-content/index.html
@@ -2,33 +2,34 @@
<html lang="en-us">
    <head><meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Ticky Tacky Dark - Rich Content</title>
<meta name="description" content="A brief description of Hugo Shortcodes">
<meta name="author" content="Hugo Authors">
<link rel="icon" href="/ticky_tacky_dark/favicon.ico">
<link rel="icon" href="/ticky_tacky_dark/favicon.ico"><meta property="og:title" content="Rich Content" />
<meta property="og:description" content="A brief description of Hugo Shortcodes" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://kc0bfv.github.io/ticky_tacky_dark/rich-content/" />
<meta property="og:image" content="https://kc0bfv.github.io/ticky_tacky_dark/img/rich01.jpg" />
<title>Ticky Tacky Dark - Rich Content</title>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://kc0bfv.github.io/ticky_tacky_dark/img/rich01.jpg"/>
<meta name="twitter:title" content="Rich Content"/>
<meta name="twitter:description" content="A brief description of Hugo Shortcodes"/>
<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>
        
@@ -45,6 +46,55 @@
        
    </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();
    function randomSideImg() {
        let images = ["https://kc0bfv.github.io/ticky_tacky_dark/img/rich01.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("sideimage");
                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;
    }
    randomSideImg();
</script>
</head>
    <body>
        <div id="full_body">
@@ -89,7 +139,7 @@
    <div class="card-header">
    <a href="https://www.instagram.com/koloot.design" class="card-link">koloot.design</a>
  </div>
    <a href="https://instagram.com/p/BGvuInzyFAe/" rel="noopener" target="_blank"><img class="card-img-top img-fluid" src="https://scontent-ort2-2.cdninstagram.com/v/t51.2885-15/sh0.08/e35/s640x640/13437259_1631155187211476_646101738_n.jpg?_nc_ht=scontent-ort2-2.cdninstagram.com&amp;_nc_cat=108&amp;_nc_ohc=feZCxlyiJ54AX8n3FDD&amp;oh=bf9b4fa6ccd7aa282253a32339e55b3f&amp;oe=5EC3AE71" width="640"  height="451" alt="Instagram Image"></a>
    <a href="https://instagram.com/p/BGvuInzyFAe/" rel="noopener" target="_blank"><img class="card-img-top img-fluid" src="https://scontent-atl3-1.cdninstagram.com/v/t51.2885-15/sh0.08/e35/s640x640/13437259_1631155187211476_646101738_n.jpg?_nc_ht=scontent-atl3-1.cdninstagram.com&amp;_nc_cat=108&amp;_nc_ohc=ARYfDy72yyYAX_GTlzj&amp;oh=d0f0036878758ce4afd58831de58188a&amp;oe=5EC3AE71" width="640"  height="451" alt="Instagram Image"></a>
    <div class="card-body">
        
        <a href="https://www.instagram.com/koloot.design" class="card-link">View More on Instagram</a>
@@ -191,33 +241,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;
    function randomSideAndHeaderImg() {
        randomHeaderImg();
        images = ["https://kc0bfv.github.io/ticky_tacky_dark/img/rich01.jpg"];
        i = Math.ceil(Math.random() * images.length) - 1;
        document.getElementById("sideimage").src = images[i];
    }
    window.onload = randomSideAndHeaderImg;
</script>
</div>
</footer></div>
    </body>
</html>