From 7535f6a5cce363fa958fa9ea27ae779b9c365bf8 Mon Sep 17 00:00:00 2001
From: Karl <kc0bfv@gmail.com>
Date: Tue, 10 Dec 2019 21:48:42 +0000
Subject: [PATCH] Deleting non-page stuff

---
 /dev/null |   15 ---------------
 1 files changed, 0 insertions(+), 15 deletions(-)

diff --git a/LICENSE b/LICENSE
deleted file mode 100644
index 46fe619..0000000
--- a/LICENSE
+++ /dev/null
@@ -1,20 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2019 YOUR_NAME_HERE
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of
-this software and associated documentation files (the "Software"), to deal in
-the Software without restriction, including without limitation the rights to
-use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
-the Software, and to permit persons to whom the Software is furnished to do so,
-subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
-FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
-COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
-IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/README.md b/README.md
deleted file mode 100644
index 7bf0a80..0000000
--- a/README.md
+++ /dev/null
@@ -1,30 +0,0 @@
-# Ticky Tacky Dark - Theme for Hugo
-This is a multi-page theme, where the list page displays a set of image buttons linking to your sub-pages.
-
-Preview at <https://kc0bfv.github.io/ticky_tacky_dark>
-
-## Configuration
-The exampleSite demonstrates the features unique to this theme.  In your site config params section the following extra parameters are supported:
-* favicon - the favicon URL, relative to your site (placed in header meta tag)
-* webmasterEmail - the webmaster email displayed in the footer
-* author - the author for the header meta tag
-* description - the description for the header meta tag
-* headerimages - a list of relative image URLs for the header of each page
-* msvalidate - MS validation tag
-* googlesiteverification - Google site verification tag
-
-Pages you add have custom front matter options:
-* buttonimage - the relative image URL for the page's button on the front page
-* sideimages - a list of relative image URLs for the left sidebar on the page
-* sideimagealt - the alternate text for the page's left sidebar image
-* weight - an integer that specifies page ordering for the front page.  If you want the buttons and navbar items to show pages in a specific order, specify the ordering via weight.  Ordering goes from lowest weight to highest, left to right, top to bottom.
-
-## Page Construction
-Navigation from the main page happens via a button image.  These images are, optimally, 300x300 pixels.  Specify these button image URLs in a page's front matter with the `buttonimage` option.
-
-On sub-pages, images can appear on the left side.  Sizing can vary there, but at full size images come out as about 277.5 pixels, and a size of about 300x500 pixels works nicely.  You can specify multiple images for a sub-page, and they'll be randomly selected on load.  Specify them as a list of image URLs on the page front matter, with option `sideimages`.
-
-Header images are, optimally, 950x200 pixels.  Specify these in the site configuration as a list of image URLs with option `headerimages`.  One will be randomly selected on page load.
-
-## Usage
-Put this theme in your site's themes folder, then modify the site config to specify the theme `ticky_tacky_tark`, or use the `-t ticky_tacky_dark` command line switch.
diff --git a/archetypes/default.md b/archetypes/default.md
deleted file mode 100644
index 4b8562a..0000000
--- a/archetypes/default.md
+++ /dev/null
@@ -1,10 +0,0 @@
----
-title: "title"
-date: {{ .Date }}
-draft: false
-buttonimage: ""
-sideimages: []
-sideimagealt: ""
-weight: 1
----
-
diff --git a/exampleSite/archetypes/default.md b/exampleSite/archetypes/default.md
deleted file mode 100644
index 00e77bd..0000000
--- a/exampleSite/archetypes/default.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-title: "{{ replace .Name "-" " " | title }}"
-date: {{ .Date }}
-draft: true
----
-
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
deleted file mode 100644
index 0a5ba42..0000000
--- a/exampleSite/config.toml
+++ /dev/null
@@ -1,15 +0,0 @@
-baseURL = "http://example.com/"
-languageCode = "en-us"
-title = "Ticky Tacky Dark"
-theme = "ticky_tacky_dark"
-#googleAnalytics = ""
-disableKinds = ["taxonomy", "taxonomyTerm"]
-
-[params]
-    favicon = "favicon.ico"
-    webmasterEmail = "kc0bfv@gmail.com"
-    description = "The demonstration page for the Hugo Ticky Tacky Dark theme."
-    author = "kc0bfv@gmail.com"
-    headerimages = ["/img/header01.jpg", "/img/header02.jpg"]
-    #msvalidate = ""
-    #googlesiteverification = ""
diff --git a/exampleSite/config_for_github_pages.toml b/exampleSite/config_for_github_pages.toml
deleted file mode 100644
index db14060..0000000
--- a/exampleSite/config_for_github_pages.toml
+++ /dev/null
@@ -1,15 +0,0 @@
-baseURL = "https://kc0bfv.github.io/ticky_tacky_dark/"
-languageCode = "en-us"
-title = "Ticky Tacky Dark"
-theme = "ticky_tacky_dark"
-#googleAnalytics = ""
-disableKinds = ["taxonomy", "taxonomyTerm"]
-
-[params]
-    favicon = "favicon.ico"
-    webmasterEmail = "kc0bfv@gmail.com"
-    description = "The demonstration page for the Hugo Ticky Tacky Dark theme."
-    author = "kc0bfv@gmail.com"
-    headerimages = ["/img/header01.jpg", "/img/header02.jpg"]
-    #msvalidate = ""
-    #googlesiteverification = ""
diff --git a/exampleSite/content/_index.md b/exampleSite/content/_index.md
deleted file mode 100644
index 5fdd3d6..0000000
--- a/exampleSite/content/_index.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-title: "Main"
-date: 2019-12-08T00:00:00-00:00
-draft: false
----
-
diff --git a/exampleSite/content/awesome.md b/exampleSite/content/awesome.md
deleted file mode 100644
index 046bd53..0000000
--- a/exampleSite/content/awesome.md
+++ /dev/null
@@ -1,15 +0,0 @@
----
-title: "Awesome Page"
-date: 2019-12-08T00:00:00-00:00
-buttonimage: "/img/awebutton.jpg"
-sideimages: ["/img/awesome01.jpg", "/img/awesome02.jpg"]
-sideimagealt: "Awesome Page Image"
-draft: false
-weight: 1
----
-Here's some awesome text on an awesome page.  That image on the left?  It'll randomly change on load between the ones in "sideimages".
-
-<br><a href="javascript:toggleDisplay('drop_stuff');">Stuff that drops down when you click on it:</a>
-	<div id="drop_stuff" style="display:none">
-        This stuff drops down because you clicked on the text.
-	</div>
diff --git a/exampleSite/content/cool.md b/exampleSite/content/cool.md
deleted file mode 100644
index 029a8e2..0000000
--- a/exampleSite/content/cool.md
+++ /dev/null
@@ -1,15 +0,0 @@
----
-title: "Cool Page"
-date: 2019-12-08T00:00:00-00:00
-buttonimage: "/img/coolbutton.jpg"
-sideimages: ["/img/cool01.jpg"]
-sideimagealt: "Cool Page Image"
-draft: false
-weight: 4
----
-Here's some cool text on a cool page.  That image on the left?  It'll randomly change on load between the ones in "sideimages".
-
-<br><a href="javascript:toggleDisplay('drop_stuff');">Stuff that drops down when you click on it:</a>
-	<div id="drop_stuff" style="display:none">
-        This stuff drops down because you clicked on the text.
-	</div>
diff --git a/exampleSite/content/interesting.md b/exampleSite/content/interesting.md
deleted file mode 100644
index 2236f63..0000000
--- a/exampleSite/content/interesting.md
+++ /dev/null
@@ -1,15 +0,0 @@
----
-title: "Interesting Page"
-date: 2019-12-08T00:00:00-00:00
-buttonimage: "/img/interestingbutton.jpg"
-sideimages: ["/img/interesting01.jpg"]
-sideimagealt: "Interesting Page Image"
-draft: false
-weight: 3
----
-Here's some interesting text on an interesting page.  That image on the left?  It'll randomly change on load between the ones in "sideimages".
-
-<br><a href="javascript:toggleDisplay('drop_stuff');">Stuff that drops down when you click on it:</a>
-	<div id="drop_stuff" style="display:none">
-        This stuff drops down because you clicked on the text.
-	</div>
diff --git a/exampleSite/content/redir.md b/exampleSite/content/redir.md
deleted file mode 100644
index a2f88b2..0000000
--- a/exampleSite/content/redir.md
+++ /dev/null
@@ -1,9 +0,0 @@
----
-title: "Redirector - GoHugo"
-date: 2019-12-08T00:00:00-00:00
-draft: false
-buttonimage: "/img/redirbutton.jpg"
-actualurl: "https://gohugo.io/"
-weight: 2
----
-
diff --git a/exampleSite/static/img/awebutton.jpg b/exampleSite/static/img/awebutton.jpg
deleted file mode 100644
index 4960312..0000000
--- a/exampleSite/static/img/awebutton.jpg
+++ /dev/null
Binary files differ
diff --git a/exampleSite/static/img/awesome01.jpg b/exampleSite/static/img/awesome01.jpg
deleted file mode 100644
index c14dc9f..0000000
--- a/exampleSite/static/img/awesome01.jpg
+++ /dev/null
Binary files differ
diff --git a/exampleSite/static/img/awesome02.jpg b/exampleSite/static/img/awesome02.jpg
deleted file mode 100644
index d89d7b7..0000000
--- a/exampleSite/static/img/awesome02.jpg
+++ /dev/null
Binary files differ
diff --git a/exampleSite/static/img/cool01.jpg b/exampleSite/static/img/cool01.jpg
deleted file mode 100644
index 0505caf..0000000
--- a/exampleSite/static/img/cool01.jpg
+++ /dev/null
Binary files differ
diff --git a/exampleSite/static/img/coolbutton.jpg b/exampleSite/static/img/coolbutton.jpg
deleted file mode 100644
index 4c407b4..0000000
--- a/exampleSite/static/img/coolbutton.jpg
+++ /dev/null
Binary files differ
diff --git a/exampleSite/static/img/header01.jpg b/exampleSite/static/img/header01.jpg
deleted file mode 100644
index 7543cd5..0000000
--- a/exampleSite/static/img/header01.jpg
+++ /dev/null
Binary files differ
diff --git a/exampleSite/static/img/header02.jpg b/exampleSite/static/img/header02.jpg
deleted file mode 100644
index 9288f11..0000000
--- a/exampleSite/static/img/header02.jpg
+++ /dev/null
Binary files differ
diff --git a/exampleSite/static/img/interesting01.jpg b/exampleSite/static/img/interesting01.jpg
deleted file mode 100644
index 399195e..0000000
--- a/exampleSite/static/img/interesting01.jpg
+++ /dev/null
Binary files differ
diff --git a/exampleSite/static/img/interestingbutton.jpg b/exampleSite/static/img/interestingbutton.jpg
deleted file mode 100644
index 71c8db2..0000000
--- a/exampleSite/static/img/interestingbutton.jpg
+++ /dev/null
Binary files differ
diff --git a/exampleSite/static/img/redirbutton.jpg b/exampleSite/static/img/redirbutton.jpg
deleted file mode 100644
index 2ed42a2..0000000
--- a/exampleSite/static/img/redirbutton.jpg
+++ /dev/null
Binary files differ
diff --git a/exampleSite/themes/ticky_tacky_dark b/exampleSite/themes/ticky_tacky_dark
deleted file mode 120000
index 6581736..0000000
--- a/exampleSite/themes/ticky_tacky_dark
+++ /dev/null
@@ -1 +0,0 @@
-../../
\ No newline at end of file
diff --git a/layouts/404.html b/layouts/404.html
deleted file mode 100644
index 63014f6..0000000
--- a/layouts/404.html
+++ /dev/null
@@ -1,11 +0,0 @@
-{{ define "main" }}
-    <div class="col-12 col-sm-5">
-        {{ with .Params.sideimages }}
-            <img id="sideimage" class="morerounded" src="/img/side_image_template.png | relURL">
-        {{ end }}
-    </div>
-    <div class="col-12 col-sm-7">
-        <h1>404</h1>
-        <p>Content Not Found
-    </div>
-{{ end }}
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
deleted file mode 100644
index 0a4167d..0000000
--- a/layouts/_default/baseof.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<!DOCTYPE html>
-<html lang="{{ .Site.LanguageCode }}">
-    <head>{{- partial "head.html" . -}}</head>
-    <body>
-        <div id="full_body">
-            <div id="header" class="top-section">
-                {{- partial "body_header.html" . -}}
-            </div>
-            <div id="content" class="top-section">
-                <div class="container-fluid">
-                    <div class="row">
-                        <div class="col col-12 col-sm-8 col-lg-9">
-                            <div class="row">
-                                {{- block "main" . }}{{- end }}
-                            </div>
-                        </div>
-                        <div class="col col-8 offset-2 col-sm-4 offset-sm-0 col-lg-3">
-                            {{- partial "navbar" . -}}
-                        </div>
-                    </div>
-                </div>
-            </div>
-            <div id="footer" class="top-section">
-                {{- partial "body_footer.html" . -}}
-            </div>
-            {{- partial "foot.html" . -}}
-        </div>
-    </body>
-</html>
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
deleted file mode 100644
index 0a8f995..0000000
--- a/layouts/_default/list.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{{ define "main" }}
-    {{ range .Site.RegularPages.ByWeight }}
-        <div class="col col-12 col-lg-6 imgbtntxt">
-            <a class="imgbtntxt" href="{{ with .Params.actualurl }}{{ . | relURL }}{{ else }}{{ .Permalink | relURL }}{{ end }}">
-                <img class="morerounded" height="300" width="300" src="{{ .Params.buttonimage | relURL }}" alt="{{ .Title }}">
-                <br>{{ .Title }}
-            </a>
-        </div>
-    {{ end }}
-{{ end }}
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
deleted file mode 100644
index 7bfcaf9..0000000
--- a/layouts/_default/single.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{{ define "main" }}
-    <div class="col-12 col-sm-5">
-        {{ with .Params.sideimages }}
-            <img id="sideimage" class="morerounded" src="{{ "/img/side_image_template.png" | relURL }}" alt="{{ $.Params.sideimagealt }}">
-        {{ end }}
-    </div>
-    <div class="col-12 col-sm-7">
-        {{ .Content | safeHTML }}
-    </div>
-{{ end }}
diff --git a/layouts/partials/body_footer.html b/layouts/partials/body_footer.html
deleted file mode 100644
index 4071265..0000000
--- a/layouts/partials/body_footer.html
+++ /dev/null
@@ -1 +0,0 @@
-{{ with .Site.Params.webmasterEmail }}Webmaster: <a href="mailto:{{ . }}">{{ . }}</a>{{ end }}
diff --git a/layouts/partials/body_header.html b/layouts/partials/body_header.html
deleted file mode 100644
index 7fbbdea..0000000
--- a/layouts/partials/body_header.html
+++ /dev/null
@@ -1 +0,0 @@
-<img id="headerimg" class="veryrounded" src="{{ "/img/header_template.png" | relURL }}" alt="notmet.net header image">
diff --git a/layouts/partials/foot.html b/layouts/partials/foot.html
deleted file mode 100644
index 286cb6b..0000000
--- a/layouts/partials/foot.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<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";
-        }
-    }
-    {{ with .Site.Params.headerimages }}
-    function randomHeaderImg() {
-        images = [
-            {{- $last_elem := sub (len .) 1 -}}
-            {{ range $index, $component := . -}}
-                {{ . | relURL }}{{ if lt $index $last_elem }},{{ end }}
-            {{- end -}}
-        ];
-        i = Math.ceil(Math.random() * images.length) - 1;
-        document.getElementById("headerimg").src = images[i];
-    }
-    window.onload = randomHeaderImg;
-    {{ end }}
-    {{ with .Params.sideimages }}
-    function randomSideAndHeaderImg() {
-        randomHeaderImg();
-        images = [
-            {{- $last_elem := sub (len .) 1 -}}
-            {{ range $index, $component := . -}}
-                {{ . | relURL }}{{ if lt $index $last_elem }},{{ end }}
-            {{- end -}}
-        ];
-        i = Math.ceil(Math.random() * images.length) - 1;
-        document.getElementById("sideimage").src = images[i];
-    }
-    window.onload = randomSideAndHeaderImg;
-    {{ end }}
-</script>
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
deleted file mode 100644
index 1c9a652..0000000
--- a/layouts/partials/head.html
+++ /dev/null
@@ -1,56 +0,0 @@
-<meta charset="utf-8">
-<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-
-{{- if isset .Params "description" -}} {{- $.Scratch.Set "description" .Params.description -}}
-{{- else -}}
-    {{- if isset .Site.Params "description" -}} {{- $.Scratch.Set "description" .Site.Params.description -}} {{- end -}}
-{{- end }}
-{{ with $.Scratch.Get "description" -}}<meta name="description" content="{{ . }}">{{- end }}
-{{- if isset .Params "author" -}} {{- $.Scratch.Set "author" .Params.author -}}
-{{- else -}}
-    {{- if isset .Site.Params "author" -}} {{- $.Scratch.Set "author" .Site.Params.author -}} {{- end -}}
-{{- end }}
-{{ with $.Scratch.Get "author" -}}<meta name="author" content="{{ . }}">{{- end }}
-<link rel="icon" href="{{ .Site.Params.favicon | relURL }}">
-
-<title>{{ .Site.Title }}{{ with .Params.title }} - {{ . }}{{ end }}</title>
-
-{{ with .Params.actualurl }}
-<meta http-equiv="refresh" content="0;URL='{{ . | relURL }}'" />
-{{ end }}
-
-<!-- SEO Prefs -->
-<meta name="robots" content="index,follow">
-<meta name="referrer" content="origin-when-cross-origin">
-{{ with .Site.Params.googlesiteverification }}<meta name="google-site-verification" content="{{ . }}">{{ end }}
-{{ with .Site.Params.msvalidate }}<meta name="msvalidate.01" content="{{ . }}">{{ end }}
-
-<!-- Site Generator -->
-<meta name="generator" content="Hugo {{ hugo.Version }}">
-
-<!-- Bootstrap CSS -->
-<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
-
-<!--My CSS-->
-<link rel="stylesheet" href="{{ "/css/myscreen.css" | relURL }}" type="text/css" media="screen">
-<link rel="stylesheet" href="{{ "/css/myprint.css" | relURL }}" type="text/css" media="print">
-<meta name="theme-color" content="black">
-
-{{ template "_internal/google_analytics_async.html" . }}
-
-<noscript>
-    <style>
-        {{ with .Site.Params.headerimages }}
-            #headerimg {
-                background-image: url({{ index . 0 | safeURL }});
-                background-size: cover;
-            }
-        {{ end }}
-        {{ with .Params.sideimages }}
-            #sideimage {
-                background-image: url({{ index . 0 | safeURL }});
-                background-size: cover;
-            }
-        {{ end }}
-    </style>
-</noscript>
diff --git a/layouts/partials/navbar.html b/layouts/partials/navbar.html
deleted file mode 100644
index bb4aa81..0000000
--- a/layouts/partials/navbar.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<div class="box morerounded">
-    <ul class="navbar">
-        {{- $pages := slice .Site.Home -}}
-        {{- $pages = $pages | append .Site.RegularPages.ByWeight -}}
-        {{ range $pages }}
-            <li>
-                {{- if eq . $ -}}
-                    {{ .Title }}
-                {{- else -}}
-                    <a href="{{ with .Params.actualurl }}{{ . | relURL }}{{ else }}{{ .Permalink }}{{ end }}">{{ .Title }}</a>
-                {{- end -}}
-            </li>
-        {{- end }}
-    </ul>
-</div>
diff --git a/static/css/myboth.css b/static/css/myboth.css
deleted file mode 100644
index 1603bef..0000000
--- a/static/css/myboth.css
+++ /dev/null
@@ -1,25 +0,0 @@
-.box { padding-bottom:.25em; }
-#headerimg { width: 100%; }
-#footer { font-size: .8em; }
-#sideimage { width: 100%; }
-#full_body { max-width: 1024px; margin: auto; }
-
-/* Make my own styles up */
-.top-section { margin: 20px; }
-.morerounded { border-radius:15px; }
-.veryrounded { border-radius:30px; }
-.navbar {
-    list-style-type: none;
-    flex-direction: column;
-    align-items: flex-start;
-}
-.imgbtntxt { text-align:center; font-size:1.5em; font-weight:normal; color:#999; text-decoration:none; }
-.abitbigger { font-size:1.3em; }
-.verylarge { font-size:2em; }
-
-/* Styles mimicing old blueprint */
-a:hover { text-decoration: none; }
-
-body {
-    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
-}
diff --git a/static/css/myprint.css b/static/css/myprint.css
deleted file mode 100644
index 5f27a36..0000000
--- a/static/css/myprint.css
+++ /dev/null
@@ -1,9 +0,0 @@
-@import url("myboth.css");
-
-body { background:white; color: #000; }
-h1, h2, h3, h4, h5, h6 { color: #000; }
-a:focus, a:hover { color: #33f; }
-a { color:#33f; }
-.loud { color: #000; }
-.box { color: #000; }
-.navbar { display: none; }
diff --git a/static/css/myscreen.css b/static/css/myscreen.css
deleted file mode 100644
index 2fd2529..0000000
--- a/static/css/myscreen.css
+++ /dev/null
@@ -1,11 +0,0 @@
-@import url("myboth.css");
-
-body { background:black; color: #ddd; }
-h1, h2, h3, h4, h5, h6 { color: #eee; }
-a:focus, a:hover { color: #06c; }
-a { color: #09f; }
-.loud { color: #fff; }
-.box {
-    color: #222;
-    background: #e5eCf9;
-}
diff --git a/static/img/header_template.png b/static/img/header_template.png
deleted file mode 100644
index bb00fcf..0000000
--- a/static/img/header_template.png
+++ /dev/null
Binary files differ
diff --git a/static/img/side_image_template.png b/static/img/side_image_template.png
deleted file mode 100644
index 200ab97..0000000
--- a/static/img/side_image_template.png
+++ /dev/null
Binary files differ
diff --git a/theme.toml b/theme.toml
deleted file mode 100644
index c055590..0000000
--- a/theme.toml
+++ /dev/null
@@ -1,15 +0,0 @@
-# theme.toml template for a Hugo theme
-# See https://github.com/gohugoio/hugoThemes#themetoml for an example
-
-name = "Ticky_Tacky_Dark"
-license = "MIT"
-licenselink = "https://github.com/kc0bfv/ticky_tacky_dark/blob/master/LICENSE"
-description = "Ticky Tacky Dark's front page is a set of little boxes, all the same, containing pictures that represent your site's pages."
-homepage = "https://github.com/kc0bfv/ticky_tacky_dark/"
-tags = ["responsive", "bootstrap", "personal", "blog", "mobile", "dark", "creative", "images", "multipage"]
-features = []
-min_version = "0.40"
-
-[author]
-  name = "kc0bfv"
-  homepage = "https://notmet.net/"

--
Gitblit v1.10.0