drafting 'smoking' post
This commit is contained in:
@@ -2,4 +2,5 @@
|
||||
date = '{{ .Date }}'
|
||||
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||
draft = true
|
||||
tags = []
|
||||
+++
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
+++
|
||||
date = '2026-08-01T04:24:46Z'
|
||||
title = 'The Chicken Street Band'
|
||||
tags = ["music", "chickenstreetband", "maine"]
|
||||
tags = ["music", "Chicken Street Band", "maine"]
|
||||
+++
|
||||
**A collection of my favorite moments with these goons.**
|
||||
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
+++
|
||||
date = '2026-08-01T23:40:44Z'
|
||||
title = 'Songs I wrote!'
|
||||
tags = ['music', 'originals']
|
||||
+++
|
||||
|
||||
"The Hollow", with The Chicken Street Band at Roots Revival Fest 8/2/24
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
+++
|
||||
date = '2026-08-02T22:31:41-04:00'
|
||||
title = 'Poultry Highway'
|
||||
tags = ['music', 'poultryhighway', 'band']
|
||||
+++
|
||||
|
||||
The spiritual successor to The Chicken Street Band, rockifying and expanding the existing setlist
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
+++
|
||||
date = '2026-08-03T10:32:52-04:00'
|
||||
title = 'Originals'
|
||||
tags = ["music", "techno", "originals"]
|
||||
+++
|
||||
|
||||
These are the wubs I made. I am capable of original thought (for the most part)!
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
+++
|
||||
date = '2026-08-03T10:28:19-04:00'
|
||||
title = 'Remixes'
|
||||
tags = ["music", "techno", "remixes"]
|
||||
+++
|
||||
|
||||
**Some remixed tunes for your wubby pleasure**
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
+++
|
||||
date = '2026-07-30T20:55:14-04:00'
|
||||
title = 'Musiccoming'
|
||||
+++
|
||||
|
||||
# There is music coming, I promise
|
||||
@@ -2,5 +2,3 @@
|
||||
date = '2026-07-30T20:47:11-04:00'
|
||||
title = 'Posts'
|
||||
+++
|
||||
|
||||
This is where the posts will live
|
||||
@@ -1,6 +0,0 @@
|
||||
+++
|
||||
date = '2026-08-01T04:37:35Z'
|
||||
title = 'This is what a post will look like'
|
||||
draft = false
|
||||
+++
|
||||
It's empty for now, come back later!
|
||||
@@ -0,0 +1,11 @@
|
||||
+++
|
||||
date = '2026-08-04T14:38:27-04:00'
|
||||
title = 'Smoking'
|
||||
draft = true
|
||||
tags = []
|
||||
+++
|
||||
|
||||
God I love smoking.
|
||||
|
||||
But lately it's been getting old.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
+++
|
||||
date = '2026-08-03T19:02:10-04:00'
|
||||
date = '2026-08-04T14:17:14-04:00'
|
||||
title = 'Tags'
|
||||
layout = "terms"
|
||||
draft = true
|
||||
+++
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
+++
|
||||
date = '2026-07-31T19:00:33-04:00'
|
||||
title = 'Quick rundown on the brain dump'
|
||||
title = '"Mission Statement"'
|
||||
+++
|
||||
|
||||
{{< image src="/images/portraitsilly.jpg" alt="A beautiful landscape" class="shadow-lg" width="200" >}}
|
||||
|
||||
@@ -108,7 +108,6 @@ Things like homelab docs, music I get to work on, general musings
|
||||
url = "/tags/"
|
||||
weight = 7
|
||||
|
||||
|
||||
[caches]
|
||||
[caches.images]
|
||||
dir = ':cacheDir/images'
|
||||
|
||||
@@ -0,0 +1,53 @@
|
||||
{{ define "main" }}
|
||||
<header class="page-header">
|
||||
<h1>{{ .Title }}</h1>
|
||||
{{- if .Description }}
|
||||
<div class="post-description">
|
||||
{{ .Description }}
|
||||
</div>
|
||||
{{- end }}
|
||||
</header>
|
||||
|
||||
<div class="tags-list-container">
|
||||
<ul class="custom-tags-list">
|
||||
{{- range .Data.Terms.Alphabetical }}
|
||||
<li>
|
||||
<a href="{{ .Page.Permalink }}">
|
||||
<strong>{{ .Page.Title }}</strong>
|
||||
<span class="tag-count">({{ .Count }})</span>
|
||||
</a>
|
||||
</li>
|
||||
{{- end }}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.custom-tags-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 20px 0;
|
||||
}
|
||||
.custom-tags-list li {
|
||||
margin-bottom: 12px;
|
||||
padding-bottom: 8px;
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
.custom-tags-list a {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
color: var(--primary);
|
||||
}
|
||||
.custom-tags-list a:hover strong {
|
||||
color: var(--theme);
|
||||
}
|
||||
.tag-count {
|
||||
background: var(--code-bg);
|
||||
padding: 2px 8px;
|
||||
border-radius: 4px;
|
||||
font-size: 0.9em;
|
||||
color: var(--secondary);
|
||||
}
|
||||
</style>
|
||||
{{ end }}
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
+10
-16
@@ -6,8 +6,16 @@
|
||||
<description>Recent content on TheWittyBanter.com</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Mon, 03 Aug 2026 10:32:52 -0400</lastBuildDate>
|
||||
<lastBuildDate>Tue, 04 Aug 2026 14:38:27 -0400</lastBuildDate>
|
||||
<atom:link href="//localhost:1313/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Smoking</title>
|
||||
<link>//localhost:1313/posts/smoking/</link>
|
||||
<pubDate>Tue, 04 Aug 2026 14:38:27 -0400</pubDate>
|
||||
<guid>//localhost:1313/posts/smoking/</guid>
|
||||
<description><p>God I love smoking.</p>
|
||||
<p>But lately it&rsquo;s been getting old.</p></description>
|
||||
</item>
|
||||
<item>
|
||||
<title>Originals</title>
|
||||
<link>//localhost:1313/music/techno/originals/</link>
|
||||
@@ -90,7 +98,7 @@
|
||||
<pubDate>Sat, 01 Aug 2026 23:40:44 +0000</pubDate>
|
||||
<guid>//localhost:1313/music/originals/</guid>
|
||||
<description><p>&ldquo;The Hollow&rdquo;, with The Chicken Street Band at Roots Revival Fest 8/2/24</p>
|
||||
<h2 id="hahahugoshortcode58s0hbhb"><figure>
|
||||
<h2 id="hahahugoshortcode17s0hbhb"><figure>
|
||||
<audio controls preload="metadata" style="width: 100%;">
|
||||
<source src="//localhost:1313/audio/hollowroots.mp3" type="audio/mpeg">
|
||||
Your browser does not support the audio element.
|
||||
@@ -116,13 +124,6 @@
|
||||
<p>^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^</p>
|
||||
<p>Go download it while you read this</p></description>
|
||||
</item>
|
||||
<item>
|
||||
<title>This is what a post will look like</title>
|
||||
<link>//localhost:1313/posts/helloworld/</link>
|
||||
<pubDate>Sat, 01 Aug 2026 04:37:35 +0000</pubDate>
|
||||
<guid>//localhost:1313/posts/helloworld/</guid>
|
||||
<description><p>It&rsquo;s empty for now, come back later!</p></description>
|
||||
</item>
|
||||
<item>
|
||||
<title>The Chicken Street Band</title>
|
||||
<link>//localhost:1313/music/207/</link>
|
||||
@@ -212,12 +213,5 @@
|
||||
</video>
|
||||
</div></description>
|
||||
</item>
|
||||
<item>
|
||||
<title>Musiccoming</title>
|
||||
<link>//localhost:1313/musiccoming/</link>
|
||||
<pubDate>Thu, 30 Jul 2026 20:55:14 -0400</pubDate>
|
||||
<guid>//localhost:1313/musiccoming/</guid>
|
||||
<description><h1 id="there-is-music-coming-i-promise">There is music coming, I promise</h1></description>
|
||||
</item>
|
||||
</channel>
|
||||
</rss>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<title>The Chicken Street Band | TheWittyBanter.com</title>
|
||||
<meta name="keywords" content="music, chickenstreetband, maine">
|
||||
<meta name="keywords" content="music, Chicken Street Band, maine">
|
||||
<meta name="description" content="A collection of my favorite moments with these goons.
|
||||
|
||||
207 Maine
|
||||
@@ -191,7 +191,7 @@ Such a fun show.">
|
||||
<footer class="post-footer">
|
||||
<ul class="post-tags">
|
||||
<li><a href="//localhost:1313/tags/music/">Music</a></li>
|
||||
<li><a href="//localhost:1313/tags/chickenstreetband/">Chickenstreetband</a></li>
|
||||
<li><a href="//localhost:1313/tags/chicken-street-band/">Chicken Street Band</a></li>
|
||||
<li><a href="//localhost:1313/tags/maine/">Maine</a></li>
|
||||
</ul>
|
||||
</footer>
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
<pubDate>Sat, 01 Aug 2026 23:40:44 +0000</pubDate>
|
||||
<guid>//localhost:1313/music/originals/</guid>
|
||||
<description><p>&ldquo;The Hollow&rdquo;, with The Chicken Street Band at Roots Revival Fest 8/2/24</p>
|
||||
<h2 id="hahahugoshortcode58s0hbhb"><figure>
|
||||
<h2 id="hahahugoshortcode17s0hbhb"><figure>
|
||||
<audio controls preload="metadata" style="width: 100%;">
|
||||
<source src="//localhost:1313/audio/hollowroots.mp3" type="audio/mpeg">
|
||||
Your browser does not support the audio element.
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<title>Songs I wrote! | TheWittyBanter.com</title>
|
||||
<meta name="keywords" content="">
|
||||
<meta name="keywords" content="music, originals">
|
||||
<meta name="description" content="“The Hollow”, with The Chicken Street Band at Roots Revival Fest 8/2/24
|
||||
|
||||
|
||||
@@ -142,7 +142,7 @@
|
||||
</header>
|
||||
|
||||
<div class="post-content md-content"><p>“The Hollow”, with The Chicken Street Band at Roots Revival Fest 8/2/24</p>
|
||||
<h2 id="hahahugoshortcode58s0hbhb"><figure>
|
||||
<h2 id="hahahugoshortcode17s0hbhb"><figure>
|
||||
<audio controls preload="metadata" style="width: 100%;">
|
||||
<source src="/audio/hollowroots.mp3" type="audio/mpeg">
|
||||
Your browser does not support the audio element.
|
||||
@@ -156,6 +156,8 @@
|
||||
|
||||
<footer class="post-footer">
|
||||
<ul class="post-tags">
|
||||
<li><a href="//localhost:1313/tags/music/">Music</a></li>
|
||||
<li><a href="//localhost:1313/tags/originals/">Originals</a></li>
|
||||
</ul>
|
||||
</footer>
|
||||
</article>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<title>Poultry Highway | TheWittyBanter.com</title>
|
||||
<meta name="keywords" content="">
|
||||
<meta name="keywords" content="music, poultryhighway, band">
|
||||
<meta name="description" content="The spiritual successor to The Chicken Street Band, rockifying and expanding the existing setlist
|
||||
|
||||
“Need some Honey” by Nathaniel Rateliff & the Night Sweats, in a sweaty bar in Hallowell
|
||||
@@ -177,6 +177,9 @@
|
||||
|
||||
<footer class="post-footer">
|
||||
<ul class="post-tags">
|
||||
<li><a href="//localhost:1313/tags/music/">Music</a></li>
|
||||
<li><a href="//localhost:1313/tags/poultryhighway/">Poultryhighway</a></li>
|
||||
<li><a href="//localhost:1313/tags/band/">Band</a></li>
|
||||
</ul>
|
||||
</footer>
|
||||
</article>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<title>Originals | TheWittyBanter.com</title>
|
||||
<meta name="keywords" content="">
|
||||
<meta name="keywords" content="music, techno, originals">
|
||||
<meta name="description" content="These are the wubs I made. I am capable of original thought (for the most part)!
|
||||
|
||||
Meager
|
||||
@@ -273,6 +273,9 @@ I like that song “Teardrop” by Massive Attack quite a bit, I wanted
|
||||
|
||||
<footer class="post-footer">
|
||||
<ul class="post-tags">
|
||||
<li><a href="//localhost:1313/tags/music/">Music</a></li>
|
||||
<li><a href="//localhost:1313/tags/techno/">Techno</a></li>
|
||||
<li><a href="//localhost:1313/tags/originals/">Originals</a></li>
|
||||
</ul>
|
||||
</footer>
|
||||
</article>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<title>Remixes | TheWittyBanter.com</title>
|
||||
<meta name="keywords" content="">
|
||||
<meta name="keywords" content="music, techno, remixes">
|
||||
<meta name="description" content="Some remixed tunes for your wubby pleasure
|
||||
Remixes
|
||||
ChixNRibz (lost)
|
||||
@@ -242,6 +242,9 @@ Technically the second remix I did. A great nerdy folk group, no shortage of Lot
|
||||
|
||||
<footer class="post-footer">
|
||||
<ul class="post-tags">
|
||||
<li><a href="//localhost:1313/tags/music/">Music</a></li>
|
||||
<li><a href="//localhost:1313/tags/techno/">Techno</a></li>
|
||||
<li><a href="//localhost:1313/tags/remixes/">Remixes</a></li>
|
||||
</ul>
|
||||
</footer>
|
||||
</article>
|
||||
|
||||
+12
-9
@@ -7,7 +7,7 @@
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<title>Posts | TheWittyBanter.com</title>
|
||||
<meta name="keywords" content="">
|
||||
<meta name="description" content="This is where the posts will live">
|
||||
<meta name="description" content="Posts - TheWittyBanter.com">
|
||||
<meta name="author" content="">
|
||||
<link rel="canonical" href="//localhost:1313/posts/">
|
||||
<link crossorigin="anonymous" href="/assets/css/stylesheet.cd9298b33628769aa1bc1acebbbfd7aa11ce81dfe03484d479e1907760249a1d.css" integrity="sha256-zZKYszYodpqhvBrOu7/XqhHOgd/gNITUeeGQd2Akmh0=" rel="preload stylesheet" as="style">
|
||||
@@ -120,24 +120,27 @@
|
||||
Posts
|
||||
</h1>
|
||||
</header>
|
||||
<div class="post-content md-content"><p>This is where the posts will live</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<article class="post-entry">
|
||||
<header class="entry-header">
|
||||
<h2 class="entry-hint-parent">This is what a post will look like
|
||||
<h2 class="entry-hint-parent">Smoking
|
||||
<span class="entry-hint" title="Draft">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="20" viewBox="0 -960 960 960" fill="currentColor">
|
||||
<path
|
||||
d="M160-410v-60h300v60H160Zm0-165v-60h470v60H160Zm0-165v-60h470v60H160Zm360 580v-123l221-220q9-9 20-13t22-4q12 0 23 4.5t20 13.5l37 37q9 9 13 20t4 22q0 11-4.5 22.5T862.09-380L643-160H520Zm300-263-37-37 37 37ZM580-220h38l121-122-18-19-19-18-122 121v38Zm141-141-19-18 37 37-18-19Z" />
|
||||
</svg>
|
||||
</span>
|
||||
</h2>
|
||||
</header>
|
||||
<div class="entry-content">
|
||||
<p>It’s empty for now, come back later!
|
||||
<p>God I love smoking.
|
||||
But lately it’s been getting old.
|
||||
</p>
|
||||
</div>
|
||||
<footer class="entry-footer">
|
||||
|
||||
<span title='2026-08-01 04:37:35 +0000 UTC'>August 1, 2026</span> · <span>1 min</span></footer>
|
||||
<a class="entry-link" aria-label="post link to This is what a post will look like" href="//localhost:1313/posts/helloworld/"></a>
|
||||
<span title='2026-08-04 14:38:27 -0400 EDT'>August 4, 2026</span> · <span>1 min</span></footer>
|
||||
<a class="entry-link" aria-label="post link to Smoking" href="//localhost:1313/posts/smoking/"></a>
|
||||
</article>
|
||||
</main>
|
||||
|
||||
|
||||
@@ -6,14 +6,15 @@
|
||||
<description>Recent content in Posts on TheWittyBanter.com</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Sat, 01 Aug 2026 04:37:35 +0000</lastBuildDate>
|
||||
<lastBuildDate>Tue, 04 Aug 2026 14:38:27 -0400</lastBuildDate>
|
||||
<atom:link href="//localhost:1313/posts/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>This is what a post will look like</title>
|
||||
<link>//localhost:1313/posts/helloworld/</link>
|
||||
<pubDate>Sat, 01 Aug 2026 04:37:35 +0000</pubDate>
|
||||
<guid>//localhost:1313/posts/helloworld/</guid>
|
||||
<description><p>It&rsquo;s empty for now, come back later!</p></description>
|
||||
<title>Smoking</title>
|
||||
<link>//localhost:1313/posts/smoking/</link>
|
||||
<pubDate>Tue, 04 Aug 2026 14:38:27 -0400</pubDate>
|
||||
<guid>//localhost:1313/posts/smoking/</guid>
|
||||
<description><p>God I love smoking.</p>
|
||||
<p>But lately it&rsquo;s been getting old.</p></description>
|
||||
</item>
|
||||
</channel>
|
||||
</rss>
|
||||
|
||||
@@ -0,0 +1,283 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="auto" data-theme="dark">
|
||||
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script><meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<title>Smoking | TheWittyBanter.com</title>
|
||||
<meta name="keywords" content="">
|
||||
<meta name="description" content="God I love smoking.
|
||||
But lately it’s been getting old.">
|
||||
<meta name="author" content="">
|
||||
<link rel="canonical" href="//localhost:1313/posts/smoking/">
|
||||
<link crossorigin="anonymous" href="/assets/css/stylesheet.cd9298b33628769aa1bc1acebbbfd7aa11ce81dfe03484d479e1907760249a1d.css" integrity="sha256-zZKYszYodpqhvBrOu7/XqhHOgd/gNITUeeGQd2Akmh0=" rel="preload stylesheet" as="style">
|
||||
<link rel="icon" href="//localhost:1313/favicon.ico">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="//localhost:1313/favicon-16x16.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="//localhost:1313/favicon-32x32.png">
|
||||
<link rel="apple-touch-icon" href="//localhost:1313/apple-touch-icon.png">
|
||||
<link rel="mask-icon" href="//localhost:1313/safari-pinned-tab.svg">
|
||||
<meta name="theme-color" content="#2e2e33">
|
||||
<meta name="msapplication-TileColor" content="#2e2e33">
|
||||
<link rel="alternate" hreflang="en" href="//localhost:1313/posts/smoking/">
|
||||
<noscript>
|
||||
<style>
|
||||
#theme-toggle,
|
||||
.top-link {
|
||||
display: none;
|
||||
}
|
||||
|
||||
</style>
|
||||
</noscript>
|
||||
<script>
|
||||
if (localStorage.getItem("pref-theme") === "light") {
|
||||
document.querySelector("html").dataset.theme = 'light';
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body id="top">
|
||||
<header class="header">
|
||||
<nav class="header-nav">
|
||||
<div class="logo">
|
||||
<a href="//localhost:1313/" accesskey="h" title="TheWittyBanter.com (Alt + H)">TheWittyBanter.com</a>
|
||||
<div class="logo-switches">
|
||||
<button id="theme-toggle" class="theme-toggle" accesskey="t" title="(Alt + T)" aria-label="Toggle theme">
|
||||
<svg class="moon" xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"
|
||||
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||
stroke-linejoin="round">
|
||||
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
|
||||
</svg>
|
||||
<svg class="sun" xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"
|
||||
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||
stroke-linejoin="round">
|
||||
<circle cx="12" cy="12" r="5"></circle>
|
||||
<line x1="12" y1="1" x2="12" y2="3"></line>
|
||||
<line x1="12" y1="21" x2="12" y2="23"></line>
|
||||
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
|
||||
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
|
||||
<line x1="1" y1="12" x2="3" y2="12"></line>
|
||||
<line x1="21" y1="12" x2="23" y2="12"></line>
|
||||
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
|
||||
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<ul id="menu" class="menu">
|
||||
<li>
|
||||
<a href="//localhost:1313/welcome" title="Welcome">
|
||||
<span>Welcome</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/shows" title="Shows">
|
||||
<span>Shows</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/music" title="Music">
|
||||
<span>Music</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/reviews" title="Reviews">
|
||||
<span>Reviews</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/posts" title="Blog">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/docs" title="Docs">
|
||||
<span>Docs</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/tags/" title="Tags">
|
||||
<span>Tags</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/search/" title="Search (Alt + /)" accesskey=/>
|
||||
<span>Search</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="main">
|
||||
|
||||
<article class="post-single">
|
||||
<header class="post-header">
|
||||
<nav class="breadcrumbs" role="navigation" aria-label="Breadcrumb">
|
||||
<a href="/">Home</a>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right">
|
||||
<polyline points="9 18 15 12 9 6"></polyline>
|
||||
</svg>
|
||||
<a href="/posts/">Posts</a>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right">
|
||||
<polyline points="9 18 15 12 9 6"></polyline>
|
||||
</svg>
|
||||
</nav>
|
||||
<h1 class="post-title entry-hint-parent">
|
||||
Smoking
|
||||
<span class="entry-hint" title="Draft">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="35" viewBox="0 -960 960 960" fill="currentColor">
|
||||
<path
|
||||
d="M160-410v-60h300v60H160Zm0-165v-60h470v60H160Zm0-165v-60h470v60H160Zm360 580v-123l221-220q9-9 20-13t22-4q12 0 23 4.5t20 13.5l37 37q9 9 13 20t4 22q0 11-4.5 22.5T862.09-380L643-160H520Zm300-263-37-37 37 37ZM580-220h38l121-122-18-19-19-18-122 121v38Zm141-141-19-18 37 37-18-19Z" />
|
||||
</svg>
|
||||
</span>
|
||||
</h1>
|
||||
<div class="post-meta">
|
||||
|
||||
<span title='2026-08-04 14:38:27 -0400 EDT'>August 4, 2026</span> · <span>1 min</span>
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="post-content md-content"><p>God I love smoking.</p>
|
||||
<p>But lately it’s been getting old.</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<footer class="post-footer">
|
||||
<ul class="post-tags">
|
||||
</ul>
|
||||
</footer>
|
||||
</article>
|
||||
</main>
|
||||
|
||||
<footer class="footer">
|
||||
<span>© 2026 <a href="//localhost:1313/">TheWittyBanter.com</a></span> ·
|
||||
|
||||
|
||||
|
||||
<span>
|
||||
Powered by
|
||||
<a href="https://gohugo.io/?utm_source=papermod" rel="noopener" target="_blank">Hugo</a> &
|
||||
<a href="https://github.com/adityatelange/hugo-PaperMod/" rel="noopener" target="_blank">PaperMod</a>
|
||||
</span>
|
||||
</footer>
|
||||
<a href="#top" id="top-link" class="top-link hidden" aria-label="go to top" title="Go to Top (Alt + G)" accesskey="g">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevrons-up">
|
||||
<polyline points="17 11 12 6 7 11"></polyline>
|
||||
<polyline points="17 18 12 13 7 18"></polyline>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
<script>
|
||||
let menu = document.getElementById('menu');
|
||||
if (menu) {
|
||||
|
||||
const scrollPosition = localStorage.getItem("menu-scroll-position");
|
||||
if (scrollPosition) {
|
||||
menu.scrollLeft = parseInt(scrollPosition, 10);
|
||||
}
|
||||
|
||||
menu.onscroll = function () {
|
||||
localStorage.setItem("menu-scroll-position", menu.scrollLeft);
|
||||
}
|
||||
}
|
||||
|
||||
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
||||
anchor.addEventListener("click", function (e) {
|
||||
e.preventDefault();
|
||||
var id = this.getAttribute("href").substr(1);
|
||||
if (!window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
|
||||
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView({
|
||||
behavior: "smooth"
|
||||
});
|
||||
} else {
|
||||
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView();
|
||||
}
|
||||
if (id === "top") {
|
||||
history.replaceState(null, null, " ");
|
||||
} else {
|
||||
history.pushState(null, null, `#${id}`);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
<script>
|
||||
var toplink = document.getElementById("top-link");
|
||||
window.onscroll = function () {
|
||||
const scrollThreshold = window.innerHeight;
|
||||
if (document.body.scrollTop > scrollThreshold || document.documentElement.scrollTop > scrollThreshold) {
|
||||
toplink.classList.remove("hidden");
|
||||
} else {
|
||||
toplink.classList.add("hidden");
|
||||
}
|
||||
};
|
||||
|
||||
</script>
|
||||
<script>
|
||||
document.getElementById("theme-toggle").addEventListener("click", () => {
|
||||
const html = document.querySelector("html");
|
||||
if (html.dataset.theme === "dark") {
|
||||
html.dataset.theme = 'light';
|
||||
localStorage.setItem("pref-theme", 'light');
|
||||
} else {
|
||||
html.dataset.theme = 'dark';
|
||||
localStorage.setItem("pref-theme", 'dark');
|
||||
}
|
||||
})
|
||||
|
||||
</script>
|
||||
<script>
|
||||
document.querySelectorAll('pre > code').forEach((codeblock) => {
|
||||
const container = codeblock.parentNode.parentNode;
|
||||
|
||||
const copybutton = document.createElement('button');
|
||||
copybutton.classList.add('copy-code');
|
||||
copybutton.innerHTML = 'copy';
|
||||
|
||||
function copyingDone() {
|
||||
copybutton.innerHTML = 'copied!';
|
||||
setTimeout(() => {
|
||||
copybutton.innerHTML = 'copy';
|
||||
}, 2000);
|
||||
}
|
||||
|
||||
copybutton.addEventListener('click', (cb) => {
|
||||
if ('clipboard' in navigator) {
|
||||
navigator.clipboard.writeText(codeblock.textContent);
|
||||
copyingDone();
|
||||
return;
|
||||
}
|
||||
|
||||
const range = document.createRange();
|
||||
range.selectNodeContents(codeblock);
|
||||
const selection = window.getSelection();
|
||||
selection.removeAllRanges();
|
||||
selection.addRange(range);
|
||||
try {
|
||||
document.execCommand('copy');
|
||||
copyingDone();
|
||||
} catch (e) { };
|
||||
selection.removeRange(range);
|
||||
});
|
||||
|
||||
if (container.classList.contains("highlight")) {
|
||||
container.appendChild(copybutton);
|
||||
} else if (container.parentNode.firstChild == container) {
|
||||
|
||||
} else if (codeblock.parentNode.parentNode.parentNode.parentNode.parentNode.nodeName == "TABLE") {
|
||||
|
||||
codeblock.parentNode.parentNode.parentNode.parentNode.parentNode.appendChild(copybutton);
|
||||
} else {
|
||||
|
||||
codeblock.parentNode.appendChild(copybutton);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
+23
-15
@@ -3,31 +3,46 @@
|
||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||
<url>
|
||||
<loc>//localhost:1313/tags/</loc>
|
||||
<lastmod>2026-08-03T19:02:10-04:00</lastmod>
|
||||
<lastmod>2026-08-04T14:17:14-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/</loc>
|
||||
<lastmod>2026-08-03T19:02:10-04:00</lastmod>
|
||||
<lastmod>2026-08-04T14:17:14-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/tags/music/</loc>
|
||||
<lastmod>2026-08-03T10:32:52-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/music/techno/originals/</loc>
|
||||
<lastmod>2026-08-03T10:32:52-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/tags/originals/</loc>
|
||||
<lastmod>2026-08-03T10:32:52-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/tags/techno/</loc>
|
||||
<lastmod>2026-08-03T10:32:52-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/music/techno/remixes/</loc>
|
||||
<lastmod>2026-08-03T10:28:19-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/tags/remixes/</loc>
|
||||
<lastmod>2026-08-03T10:28:19-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/music/techno/</loc>
|
||||
<lastmod>2026-08-03T10:27:35-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/tags/band/</loc>
|
||||
<lastmod>2026-08-02T22:31:41-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/music/poultryhighway/</loc>
|
||||
<lastmod>2026-08-02T22:31:41-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/tags/poultryhighway/</loc>
|
||||
<lastmod>2026-08-02T22:31:41-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/docs/fstab/</loc>
|
||||
<lastmod>2026-08-02T20:58:52-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/music/originals/</loc>
|
||||
<lastmod>2026-08-01T23:40:44+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/tags/music/</loc>
|
||||
<lastmod>2026-08-01T20:06:17+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/tags/review/</loc>
|
||||
<lastmod>2026-08-01T20:06:17+00:00</lastmod>
|
||||
@@ -50,10 +65,7 @@
|
||||
<loc>//localhost:1313/tags/tech/</loc>
|
||||
<lastmod>2026-08-01T05:16:03+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/posts/helloworld/</loc>
|
||||
<lastmod>2026-08-01T04:37:35+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/tags/chickenstreetband/</loc>
|
||||
<loc>//localhost:1313/tags/chicken-street-band/</loc>
|
||||
<lastmod>2026-08-01T04:24:46+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/tags/maine/</loc>
|
||||
@@ -64,9 +76,6 @@
|
||||
</url><url>
|
||||
<loc>//localhost:1313/docs/currentlab/</loc>
|
||||
<lastmod>2026-07-31T22:33:32-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/welcome/</loc>
|
||||
<lastmod>2026-07-31T19:00:33-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/docs/docshere/</loc>
|
||||
<lastmod>2026-07-31T17:11:06-04:00</lastmod>
|
||||
@@ -82,15 +91,14 @@
|
||||
</url><url>
|
||||
<loc>//localhost:1313/shows/</loc>
|
||||
<lastmod>2026-07-30T21:07:34-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/musiccoming/</loc>
|
||||
<lastmod>2026-07-30T20:55:14-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/music/</loc>
|
||||
<lastmod>2026-07-30T20:55:01-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/posts/</loc>
|
||||
<lastmod>2026-07-30T20:47:11-04:00</lastmod>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/welcome/</loc>
|
||||
</url><url>
|
||||
<loc>//localhost:1313/categories/</loc>
|
||||
</url><url>
|
||||
|
||||
@@ -0,0 +1,225 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="auto" data-theme="dark">
|
||||
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script><meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<title>Band | TheWittyBanter.com</title>
|
||||
<meta name="keywords" content="">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="canonical" href="//localhost:1313/tags/band/">
|
||||
<link crossorigin="anonymous" href="/assets/css/stylesheet.cd9298b33628769aa1bc1acebbbfd7aa11ce81dfe03484d479e1907760249a1d.css" integrity="sha256-zZKYszYodpqhvBrOu7/XqhHOgd/gNITUeeGQd2Akmh0=" rel="preload stylesheet" as="style">
|
||||
<link rel="icon" href="//localhost:1313/favicon.ico">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="//localhost:1313/favicon-16x16.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="//localhost:1313/favicon-32x32.png">
|
||||
<link rel="apple-touch-icon" href="//localhost:1313/apple-touch-icon.png">
|
||||
<link rel="mask-icon" href="//localhost:1313/safari-pinned-tab.svg">
|
||||
<meta name="theme-color" content="#2e2e33">
|
||||
<meta name="msapplication-TileColor" content="#2e2e33">
|
||||
<link rel="alternate" type="application/rss+xml" href="//localhost:1313/tags/band/index.xml" title="rss">
|
||||
<link rel="alternate" hreflang="en" href="//localhost:1313/tags/band/">
|
||||
<noscript>
|
||||
<style>
|
||||
#theme-toggle,
|
||||
.top-link {
|
||||
display: none;
|
||||
}
|
||||
|
||||
</style>
|
||||
</noscript>
|
||||
<script>
|
||||
if (localStorage.getItem("pref-theme") === "light") {
|
||||
document.querySelector("html").dataset.theme = 'light';
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body class="list" id="top">
|
||||
<header class="header">
|
||||
<nav class="header-nav">
|
||||
<div class="logo">
|
||||
<a href="//localhost:1313/" accesskey="h" title="TheWittyBanter.com (Alt + H)">TheWittyBanter.com</a>
|
||||
<div class="logo-switches">
|
||||
<button id="theme-toggle" class="theme-toggle" accesskey="t" title="(Alt + T)" aria-label="Toggle theme">
|
||||
<svg class="moon" xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"
|
||||
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||
stroke-linejoin="round">
|
||||
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
|
||||
</svg>
|
||||
<svg class="sun" xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"
|
||||
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||
stroke-linejoin="round">
|
||||
<circle cx="12" cy="12" r="5"></circle>
|
||||
<line x1="12" y1="1" x2="12" y2="3"></line>
|
||||
<line x1="12" y1="21" x2="12" y2="23"></line>
|
||||
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
|
||||
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
|
||||
<line x1="1" y1="12" x2="3" y2="12"></line>
|
||||
<line x1="21" y1="12" x2="23" y2="12"></line>
|
||||
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
|
||||
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<ul id="menu" class="menu">
|
||||
<li>
|
||||
<a href="//localhost:1313/welcome" title="Welcome">
|
||||
<span>Welcome</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/shows" title="Shows">
|
||||
<span>Shows</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/music" title="Music">
|
||||
<span>Music</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/reviews" title="Reviews">
|
||||
<span>Reviews</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/posts" title="Blog">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/docs" title="Docs">
|
||||
<span>Docs</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/tags/" title="Tags">
|
||||
<span>Tags</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/search/" title="Search (Alt + /)" accesskey=/>
|
||||
<span>Search</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="main">
|
||||
<header class="page-header"><nav class="breadcrumbs" role="navigation" aria-label="Breadcrumb">
|
||||
<a href="/">Home</a>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right">
|
||||
<polyline points="9 18 15 12 9 6"></polyline>
|
||||
</svg>
|
||||
<a href="/tags/">Tags</a>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right">
|
||||
<polyline points="9 18 15 12 9 6"></polyline>
|
||||
</svg>
|
||||
</nav>
|
||||
<h1>
|
||||
Band
|
||||
</h1>
|
||||
</header>
|
||||
|
||||
<article class="post-entry tag-entry">
|
||||
<header class="entry-header">
|
||||
<h2 class="entry-hint-parent">Poultry Highway
|
||||
</h2>
|
||||
</header>
|
||||
<div class="entry-content">
|
||||
<p>The spiritual successor to The Chicken Street Band, rockifying and expanding the existing setlist
|
||||
“Need some Honey” by Nathaniel Rateliff & the Night Sweats, in a sweaty bar in Hallowell Your browser does not support the video tag. “The Hollow” by yours truly, one of my favorite performances of this tune Your browser does not support the video tag. ...</p>
|
||||
</div>
|
||||
<footer class="entry-footer">
|
||||
|
||||
<span title='2026-08-02 22:31:41 -0400 EDT'>August 2, 2026</span> · <span>1 min</span></footer>
|
||||
<a class="entry-link" aria-label="post link to Poultry Highway" href="//localhost:1313/music/poultryhighway/"></a>
|
||||
</article>
|
||||
</main>
|
||||
|
||||
<footer class="footer">
|
||||
<span>© 2026 <a href="//localhost:1313/">TheWittyBanter.com</a></span> ·
|
||||
|
||||
|
||||
|
||||
<span>
|
||||
Powered by
|
||||
<a href="https://gohugo.io/?utm_source=papermod" rel="noopener" target="_blank">Hugo</a> &
|
||||
<a href="https://github.com/adityatelange/hugo-PaperMod/" rel="noopener" target="_blank">PaperMod</a>
|
||||
</span>
|
||||
</footer>
|
||||
<a href="#top" id="top-link" class="top-link hidden" aria-label="go to top" title="Go to Top (Alt + G)" accesskey="g">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevrons-up">
|
||||
<polyline points="17 11 12 6 7 11"></polyline>
|
||||
<polyline points="17 18 12 13 7 18"></polyline>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
<script>
|
||||
let menu = document.getElementById('menu');
|
||||
if (menu) {
|
||||
|
||||
const scrollPosition = localStorage.getItem("menu-scroll-position");
|
||||
if (scrollPosition) {
|
||||
menu.scrollLeft = parseInt(scrollPosition, 10);
|
||||
}
|
||||
|
||||
menu.onscroll = function () {
|
||||
localStorage.setItem("menu-scroll-position", menu.scrollLeft);
|
||||
}
|
||||
}
|
||||
|
||||
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
||||
anchor.addEventListener("click", function (e) {
|
||||
e.preventDefault();
|
||||
var id = this.getAttribute("href").substr(1);
|
||||
if (!window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
|
||||
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView({
|
||||
behavior: "smooth"
|
||||
});
|
||||
} else {
|
||||
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView();
|
||||
}
|
||||
if (id === "top") {
|
||||
history.replaceState(null, null, " ");
|
||||
} else {
|
||||
history.pushState(null, null, `#${id}`);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
<script>
|
||||
var toplink = document.getElementById("top-link");
|
||||
window.onscroll = function () {
|
||||
const scrollThreshold = window.innerHeight;
|
||||
if (document.body.scrollTop > scrollThreshold || document.documentElement.scrollTop > scrollThreshold) {
|
||||
toplink.classList.remove("hidden");
|
||||
} else {
|
||||
toplink.classList.add("hidden");
|
||||
}
|
||||
};
|
||||
|
||||
</script>
|
||||
<script>
|
||||
document.getElementById("theme-toggle").addEventListener("click", () => {
|
||||
const html = document.querySelector("html");
|
||||
if (html.dataset.theme === "dark") {
|
||||
html.dataset.theme = 'light';
|
||||
localStorage.setItem("pref-theme", 'light');
|
||||
} else {
|
||||
html.dataset.theme = 'dark';
|
||||
localStorage.setItem("pref-theme", 'dark');
|
||||
}
|
||||
})
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
||||
<channel>
|
||||
<title>Band on TheWittyBanter.com</title>
|
||||
<link>//localhost:1313/tags/band/</link>
|
||||
<description>Recent content in Band on TheWittyBanter.com</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Sun, 02 Aug 2026 22:31:41 -0400</lastBuildDate>
|
||||
<atom:link href="//localhost:1313/tags/band/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Poultry Highway</title>
|
||||
<link>//localhost:1313/music/poultryhighway/</link>
|
||||
<pubDate>Sun, 02 Aug 2026 22:31:41 -0400</pubDate>
|
||||
<guid>//localhost:1313/music/poultryhighway/</guid>
|
||||
<description><p>The spiritual successor to The Chicken Street Band, rockifying and expanding the existing setlist</p>
|
||||
<hr>
|
||||
<p>&ldquo;Need some Honey&rdquo; by Nathaniel Rateliff &amp; the Night Sweats, in a sweaty bar in Hallowell
|
||||
<div class="video-wrapper" style="max-width: 50%; margin: 0 auto;">
|
||||
<video src="//localhost:1313/videos/poultry/needsomehoney.mp4" controls style="width: 100%; height: auto;">
|
||||
Your browser does not support the video tag.
|
||||
</video>
|
||||
</div>
|
||||
</p>
|
||||
<p>&ldquo;The Hollow&rdquo; by yours truly, one of my favorite performances of this tune
|
||||
<div class="video-wrapper" style="max-width: 50%; margin: 0 auto;">
|
||||
<video src="//localhost:1313/videos/poultry/hollow.mp4" controls style="width: 100%; height: auto;">
|
||||
Your browser does not support the video tag.
|
||||
</video>
|
||||
</div>
|
||||
</p></description>
|
||||
</item>
|
||||
</channel>
|
||||
</rss>
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>//localhost:1313/tags/band/</title>
|
||||
<link rel="canonical" href="//localhost:1313/tags/band/">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="refresh" content="0; url=//localhost:1313/tags/band/">
|
||||
</head>
|
||||
</html>
|
||||
@@ -0,0 +1,227 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="auto" data-theme="dark">
|
||||
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script><meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<title>Chicken Street Band | TheWittyBanter.com</title>
|
||||
<meta name="keywords" content="">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="canonical" href="//localhost:1313/tags/chicken-street-band/">
|
||||
<link crossorigin="anonymous" href="/assets/css/stylesheet.cd9298b33628769aa1bc1acebbbfd7aa11ce81dfe03484d479e1907760249a1d.css" integrity="sha256-zZKYszYodpqhvBrOu7/XqhHOgd/gNITUeeGQd2Akmh0=" rel="preload stylesheet" as="style">
|
||||
<link rel="icon" href="//localhost:1313/favicon.ico">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="//localhost:1313/favicon-16x16.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="//localhost:1313/favicon-32x32.png">
|
||||
<link rel="apple-touch-icon" href="//localhost:1313/apple-touch-icon.png">
|
||||
<link rel="mask-icon" href="//localhost:1313/safari-pinned-tab.svg">
|
||||
<meta name="theme-color" content="#2e2e33">
|
||||
<meta name="msapplication-TileColor" content="#2e2e33">
|
||||
<link rel="alternate" type="application/rss+xml" href="//localhost:1313/tags/chicken-street-band/index.xml" title="rss">
|
||||
<link rel="alternate" hreflang="en" href="//localhost:1313/tags/chicken-street-band/">
|
||||
<noscript>
|
||||
<style>
|
||||
#theme-toggle,
|
||||
.top-link {
|
||||
display: none;
|
||||
}
|
||||
|
||||
</style>
|
||||
</noscript>
|
||||
<script>
|
||||
if (localStorage.getItem("pref-theme") === "light") {
|
||||
document.querySelector("html").dataset.theme = 'light';
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body class="list" id="top">
|
||||
<header class="header">
|
||||
<nav class="header-nav">
|
||||
<div class="logo">
|
||||
<a href="//localhost:1313/" accesskey="h" title="TheWittyBanter.com (Alt + H)">TheWittyBanter.com</a>
|
||||
<div class="logo-switches">
|
||||
<button id="theme-toggle" class="theme-toggle" accesskey="t" title="(Alt + T)" aria-label="Toggle theme">
|
||||
<svg class="moon" xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"
|
||||
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||
stroke-linejoin="round">
|
||||
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
|
||||
</svg>
|
||||
<svg class="sun" xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"
|
||||
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||
stroke-linejoin="round">
|
||||
<circle cx="12" cy="12" r="5"></circle>
|
||||
<line x1="12" y1="1" x2="12" y2="3"></line>
|
||||
<line x1="12" y1="21" x2="12" y2="23"></line>
|
||||
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
|
||||
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
|
||||
<line x1="1" y1="12" x2="3" y2="12"></line>
|
||||
<line x1="21" y1="12" x2="23" y2="12"></line>
|
||||
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
|
||||
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<ul id="menu" class="menu">
|
||||
<li>
|
||||
<a href="//localhost:1313/welcome" title="Welcome">
|
||||
<span>Welcome</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/shows" title="Shows">
|
||||
<span>Shows</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/music" title="Music">
|
||||
<span>Music</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/reviews" title="Reviews">
|
||||
<span>Reviews</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/posts" title="Blog">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/docs" title="Docs">
|
||||
<span>Docs</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/tags/" title="Tags">
|
||||
<span>Tags</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/search/" title="Search (Alt + /)" accesskey=/>
|
||||
<span>Search</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="main">
|
||||
<header class="page-header"><nav class="breadcrumbs" role="navigation" aria-label="Breadcrumb">
|
||||
<a href="/">Home</a>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right">
|
||||
<polyline points="9 18 15 12 9 6"></polyline>
|
||||
</svg>
|
||||
<a href="/tags/">Tags</a>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right">
|
||||
<polyline points="9 18 15 12 9 6"></polyline>
|
||||
</svg>
|
||||
</nav>
|
||||
<h1>
|
||||
Chicken Street Band
|
||||
</h1>
|
||||
</header>
|
||||
|
||||
<article class="post-entry tag-entry">
|
||||
<header class="entry-header">
|
||||
<h2 class="entry-hint-parent">The Chicken Street Band
|
||||
</h2>
|
||||
</header>
|
||||
<div class="entry-content">
|
||||
<p>A collection of my favorite moments with these goons.
|
||||
207 Maine Your browser does not support the video tag. A cool opportunity, I think it was two songs? If I can track down the other one I’ll throw it up here. Rumor has it they still air.
|
||||
Opening for the Mallett Brothers at the Widowmaker (Sugarloaf) Your browser does not support the video tag. Such a fun show.
|
||||
...</p>
|
||||
</div>
|
||||
<footer class="entry-footer">
|
||||
|
||||
<span title='2026-08-01 04:24:46 +0000 UTC'>August 1, 2026</span> · <span>1 min</span></footer>
|
||||
<a class="entry-link" aria-label="post link to The Chicken Street Band" href="//localhost:1313/music/207/"></a>
|
||||
</article>
|
||||
</main>
|
||||
|
||||
<footer class="footer">
|
||||
<span>© 2026 <a href="//localhost:1313/">TheWittyBanter.com</a></span> ·
|
||||
|
||||
|
||||
|
||||
<span>
|
||||
Powered by
|
||||
<a href="https://gohugo.io/?utm_source=papermod" rel="noopener" target="_blank">Hugo</a> &
|
||||
<a href="https://github.com/adityatelange/hugo-PaperMod/" rel="noopener" target="_blank">PaperMod</a>
|
||||
</span>
|
||||
</footer>
|
||||
<a href="#top" id="top-link" class="top-link hidden" aria-label="go to top" title="Go to Top (Alt + G)" accesskey="g">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevrons-up">
|
||||
<polyline points="17 11 12 6 7 11"></polyline>
|
||||
<polyline points="17 18 12 13 7 18"></polyline>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
<script>
|
||||
let menu = document.getElementById('menu');
|
||||
if (menu) {
|
||||
|
||||
const scrollPosition = localStorage.getItem("menu-scroll-position");
|
||||
if (scrollPosition) {
|
||||
menu.scrollLeft = parseInt(scrollPosition, 10);
|
||||
}
|
||||
|
||||
menu.onscroll = function () {
|
||||
localStorage.setItem("menu-scroll-position", menu.scrollLeft);
|
||||
}
|
||||
}
|
||||
|
||||
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
||||
anchor.addEventListener("click", function (e) {
|
||||
e.preventDefault();
|
||||
var id = this.getAttribute("href").substr(1);
|
||||
if (!window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
|
||||
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView({
|
||||
behavior: "smooth"
|
||||
});
|
||||
} else {
|
||||
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView();
|
||||
}
|
||||
if (id === "top") {
|
||||
history.replaceState(null, null, " ");
|
||||
} else {
|
||||
history.pushState(null, null, `#${id}`);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
<script>
|
||||
var toplink = document.getElementById("top-link");
|
||||
window.onscroll = function () {
|
||||
const scrollThreshold = window.innerHeight;
|
||||
if (document.body.scrollTop > scrollThreshold || document.documentElement.scrollTop > scrollThreshold) {
|
||||
toplink.classList.remove("hidden");
|
||||
} else {
|
||||
toplink.classList.add("hidden");
|
||||
}
|
||||
};
|
||||
|
||||
</script>
|
||||
<script>
|
||||
document.getElementById("theme-toggle").addEventListener("click", () => {
|
||||
const html = document.querySelector("html");
|
||||
if (html.dataset.theme === "dark") {
|
||||
html.dataset.theme = 'light';
|
||||
localStorage.setItem("pref-theme", 'light');
|
||||
} else {
|
||||
html.dataset.theme = 'dark';
|
||||
localStorage.setItem("pref-theme", 'dark');
|
||||
}
|
||||
})
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
||||
<channel>
|
||||
<title>Chicken Street Band on TheWittyBanter.com</title>
|
||||
<link>//localhost:1313/tags/chicken-street-band/</link>
|
||||
<description>Recent content in Chicken Street Band on TheWittyBanter.com</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Sat, 01 Aug 2026 04:24:46 +0000</lastBuildDate>
|
||||
<atom:link href="//localhost:1313/tags/chicken-street-band/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>The Chicken Street Band</title>
|
||||
<link>//localhost:1313/music/207/</link>
|
||||
<pubDate>Sat, 01 Aug 2026 04:24:46 +0000</pubDate>
|
||||
<guid>//localhost:1313/music/207/</guid>
|
||||
<description><p><strong>A collection of my favorite moments with these goons.</strong></p>
|
||||
<hr>
|
||||
<h2 id="207-maine">207 Maine</h2>
|
||||
<div class="video-wrapper" style="max-width: 100%; margin: 0 auto;">
|
||||
<video src="//localhost:1313/videos/207.mp4" controls style="width: 100%; height: auto;">
|
||||
Your browser does not support the video tag.
|
||||
</video>
|
||||
</div>
|
||||
|
||||
<p>A cool opportunity, I think it was two songs? If I can track down the other one I&rsquo;ll throw it up here. Rumor has it they still air.</p>
|
||||
<hr>
|
||||
<h2 id="opening-for-the-mallett-brothers-at-the-widowmaker-sugarloaf">Opening for the Mallett Brothers at the Widowmaker (Sugarloaf)</h2>
|
||||
<div class="video-wrapper" style="max-width: 100%; margin: 0 auto;">
|
||||
<video src="//localhost:1313/videos/wait.mp4" controls style="width: 100%; height: auto;">
|
||||
Your browser does not support the video tag.
|
||||
</video>
|
||||
</div>
|
||||
|
||||
<p>Such a fun show.</p></description>
|
||||
</item>
|
||||
</channel>
|
||||
</rss>
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>//localhost:1313/tags/chicken-street-band/</title>
|
||||
<link rel="canonical" href="//localhost:1313/tags/chicken-street-band/">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="refresh" content="0; url=//localhost:1313/tags/chicken-street-band/">
|
||||
</head>
|
||||
</html>
|
||||
@@ -115,7 +115,7 @@
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right">
|
||||
<polyline points="9 18 15 12 9 6"></polyline>
|
||||
</svg>
|
||||
<a href="/tags/">Tags</a>
|
||||
<a href="">Tags</a>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right">
|
||||
<polyline points="9 18 15 12 9 6"></polyline>
|
||||
|
||||
+112
-79
@@ -7,7 +7,7 @@
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<title>Tags | TheWittyBanter.com</title>
|
||||
<meta name="keywords" content="">
|
||||
<meta name="description" content="Tags - TheWittyBanter.com">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="canonical" href="//localhost:1313/tags/">
|
||||
<link crossorigin="anonymous" href="/assets/css/stylesheet.cd9298b33628769aa1bc1acebbbfd7aa11ce81dfe03484d479e1907760249a1d.css" integrity="sha256-zZKYszYodpqhvBrOu7/XqhHOgd/gNITUeeGQd2Akmh0=" rel="preload stylesheet" as="style">
|
||||
@@ -18,6 +18,7 @@
|
||||
<link rel="mask-icon" href="//localhost:1313/safari-pinned-tab.svg">
|
||||
<meta name="theme-color" content="#2e2e33">
|
||||
<meta name="msapplication-TileColor" content="#2e2e33">
|
||||
<link rel="alternate" type="application/rss+xml" href="//localhost:1313/tags/index.xml" title="rss">
|
||||
<link rel="alternate" hreflang="en" href="//localhost:1313/tags/">
|
||||
<noscript>
|
||||
<style>
|
||||
@@ -35,7 +36,7 @@
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body id="top">
|
||||
<body class="list" id="top">
|
||||
<header class="header">
|
||||
<nav class="header-nav">
|
||||
<div class="logo">
|
||||
@@ -108,38 +109,117 @@
|
||||
</nav>
|
||||
</header>
|
||||
<main class="main">
|
||||
<header class="page-header">
|
||||
<h1>Tags</h1>
|
||||
</header>
|
||||
|
||||
<article class="post-single">
|
||||
<header class="post-header">
|
||||
<nav class="breadcrumbs" role="navigation" aria-label="Breadcrumb">
|
||||
<a href="/">Home</a>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right">
|
||||
<polyline points="9 18 15 12 9 6"></polyline>
|
||||
</svg>
|
||||
</nav>
|
||||
<h1 class="post-title entry-hint-parent">
|
||||
Tags
|
||||
<span class="entry-hint" title="Draft">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="35" viewBox="0 -960 960 960" fill="currentColor">
|
||||
<path
|
||||
d="M160-410v-60h300v60H160Zm0-165v-60h470v60H160Zm0-165v-60h470v60H160Zm360 580v-123l221-220q9-9 20-13t22-4q12 0 23 4.5t20 13.5l37 37q9 9 13 20t4 22q0 11-4.5 22.5T862.09-380L643-160H520Zm300-263-37-37 37 37ZM580-220h38l121-122-18-19-19-18-122 121v38Zm141-141-19-18 37 37-18-19Z" />
|
||||
</svg>
|
||||
</span>
|
||||
</h1>
|
||||
<div class="post-meta">
|
||||
|
||||
<span title='2026-08-03 18:51:04 -0400 EDT'>August 3, 2026</span> · <span>0 min</span>
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<footer class="post-footer">
|
||||
<ul class="post-tags">
|
||||
<div class="tags-list-container">
|
||||
<ul class="custom-tags-list">
|
||||
<li>
|
||||
<a href="//localhost:1313/tags/band/">
|
||||
<strong>Band</strong>
|
||||
<span class="tag-count">(1)</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/tags/chicken-street-band/">
|
||||
<strong>Chicken Street Band</strong>
|
||||
<span class="tag-count">(1)</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/tags/docs/">
|
||||
<strong>Docs</strong>
|
||||
<span class="tag-count">(1)</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/tags/linux/">
|
||||
<strong>Linux</strong>
|
||||
<span class="tag-count">(1)</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/tags/maine/">
|
||||
<strong>Maine</strong>
|
||||
<span class="tag-count">(1)</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/tags/music/">
|
||||
<strong>Music</strong>
|
||||
<span class="tag-count">(6)</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/tags/originals/">
|
||||
<strong>Originals</strong>
|
||||
<span class="tag-count">(2)</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/tags/poultryhighway/">
|
||||
<strong>Poultryhighway</strong>
|
||||
<span class="tag-count">(1)</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/tags/remixes/">
|
||||
<strong>Remixes</strong>
|
||||
<span class="tag-count">(1)</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/tags/review/">
|
||||
<strong>Review</strong>
|
||||
<span class="tag-count">(1)</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/tags/tech/">
|
||||
<strong>Tech</strong>
|
||||
<span class="tag-count">(1)</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/tags/techno/">
|
||||
<strong>Techno</strong>
|
||||
<span class="tag-count">(2)</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</footer>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.custom-tags-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 20px 0;
|
||||
}
|
||||
.custom-tags-list li {
|
||||
margin-bottom: 12px;
|
||||
padding-bottom: 8px;
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
.custom-tags-list a {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
color: var(--primary);
|
||||
}
|
||||
.custom-tags-list a:hover strong {
|
||||
color: var(--theme);
|
||||
}
|
||||
.tag-count {
|
||||
background: var(--code-bg);
|
||||
padding: 2px 8px;
|
||||
border-radius: 4px;
|
||||
font-size: 0.9em;
|
||||
color: var(--secondary);
|
||||
}
|
||||
</style>
|
||||
|
||||
</main>
|
||||
|
||||
<footer class="footer">
|
||||
@@ -220,53 +300,6 @@
|
||||
})
|
||||
|
||||
</script>
|
||||
<script>
|
||||
document.querySelectorAll('pre > code').forEach((codeblock) => {
|
||||
const container = codeblock.parentNode.parentNode;
|
||||
|
||||
const copybutton = document.createElement('button');
|
||||
copybutton.classList.add('copy-code');
|
||||
copybutton.innerHTML = 'copy';
|
||||
|
||||
function copyingDone() {
|
||||
copybutton.innerHTML = 'copied!';
|
||||
setTimeout(() => {
|
||||
copybutton.innerHTML = 'copy';
|
||||
}, 2000);
|
||||
}
|
||||
|
||||
copybutton.addEventListener('click', (cb) => {
|
||||
if ('clipboard' in navigator) {
|
||||
navigator.clipboard.writeText(codeblock.textContent);
|
||||
copyingDone();
|
||||
return;
|
||||
}
|
||||
|
||||
const range = document.createRange();
|
||||
range.selectNodeContents(codeblock);
|
||||
const selection = window.getSelection();
|
||||
selection.removeAllRanges();
|
||||
selection.addRange(range);
|
||||
try {
|
||||
document.execCommand('copy');
|
||||
copyingDone();
|
||||
} catch (e) { };
|
||||
selection.removeRange(range);
|
||||
});
|
||||
|
||||
if (container.classList.contains("highlight")) {
|
||||
container.appendChild(copybutton);
|
||||
} else if (container.parentNode.firstChild == container) {
|
||||
|
||||
} else if (codeblock.parentNode.parentNode.parentNode.parentNode.parentNode.nodeName == "TABLE") {
|
||||
|
||||
codeblock.parentNode.parentNode.parentNode.parentNode.parentNode.appendChild(copybutton);
|
||||
} else {
|
||||
|
||||
codeblock.parentNode.appendChild(copybutton);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
||||
+40
-5
@@ -6,15 +6,50 @@
|
||||
<description>Recent content in Tags on TheWittyBanter.com</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Sat, 01 Aug 2026 20:06:17 +0000</lastBuildDate>
|
||||
<lastBuildDate>Mon, 03 Aug 2026 10:32:52 -0400</lastBuildDate>
|
||||
<atom:link href="//localhost:1313/tags/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Music</title>
|
||||
<link>//localhost:1313/tags/music/</link>
|
||||
<pubDate>Sat, 01 Aug 2026 20:06:17 +0000</pubDate>
|
||||
<pubDate>Mon, 03 Aug 2026 10:32:52 -0400</pubDate>
|
||||
<guid>//localhost:1313/tags/music/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
<item>
|
||||
<title>Originals</title>
|
||||
<link>//localhost:1313/tags/originals/</link>
|
||||
<pubDate>Mon, 03 Aug 2026 10:32:52 -0400</pubDate>
|
||||
<guid>//localhost:1313/tags/originals/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
<item>
|
||||
<title>Techno</title>
|
||||
<link>//localhost:1313/tags/techno/</link>
|
||||
<pubDate>Mon, 03 Aug 2026 10:32:52 -0400</pubDate>
|
||||
<guid>//localhost:1313/tags/techno/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
<item>
|
||||
<title>Remixes</title>
|
||||
<link>//localhost:1313/tags/remixes/</link>
|
||||
<pubDate>Mon, 03 Aug 2026 10:28:19 -0400</pubDate>
|
||||
<guid>//localhost:1313/tags/remixes/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
<item>
|
||||
<title>Band</title>
|
||||
<link>//localhost:1313/tags/band/</link>
|
||||
<pubDate>Sun, 02 Aug 2026 22:31:41 -0400</pubDate>
|
||||
<guid>//localhost:1313/tags/band/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
<item>
|
||||
<title>Poultryhighway</title>
|
||||
<link>//localhost:1313/tags/poultryhighway/</link>
|
||||
<pubDate>Sun, 02 Aug 2026 22:31:41 -0400</pubDate>
|
||||
<guid>//localhost:1313/tags/poultryhighway/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
<item>
|
||||
<title>Review</title>
|
||||
<link>//localhost:1313/tags/review/</link>
|
||||
@@ -44,10 +79,10 @@
|
||||
<description></description>
|
||||
</item>
|
||||
<item>
|
||||
<title>Chickenstreetband</title>
|
||||
<link>//localhost:1313/tags/chickenstreetband/</link>
|
||||
<title>Chicken Street Band</title>
|
||||
<link>//localhost:1313/tags/chicken-street-band/</link>
|
||||
<pubDate>Sat, 01 Aug 2026 04:24:46 +0000</pubDate>
|
||||
<guid>//localhost:1313/tags/chickenstreetband/</guid>
|
||||
<guid>//localhost:1313/tags/chicken-street-band/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
<item>
|
||||
|
||||
@@ -126,6 +126,71 @@
|
||||
</h1>
|
||||
</header>
|
||||
|
||||
<article class="post-entry tag-entry">
|
||||
<header class="entry-header">
|
||||
<h2 class="entry-hint-parent">Originals
|
||||
</h2>
|
||||
</header>
|
||||
<div class="entry-content">
|
||||
<p>These are the wubs I made. I am capable of original thought (for the most part)!
|
||||
Meager The first original EDM composition I completed on FL Studio Mobile. It created a monster.
|
||||
Your browser does not support the audio element. Ladybugs Named after the abundance of not-ladybugs-but-beetles that invade the house every year.
|
||||
Your browser does not support the audio element. Massive I like that song “Teardrop” by Massive Attack quite a bit, I wanted to make a Massive Attack song. Don’t mind the weird aetherial videogame-choir in the middle.
|
||||
...</p>
|
||||
</div>
|
||||
<footer class="entry-footer">
|
||||
|
||||
<span title='2026-08-03 10:32:52 -0400 EDT'>August 3, 2026</span> · <span>2 min</span></footer>
|
||||
<a class="entry-link" aria-label="post link to Originals" href="//localhost:1313/music/techno/originals/"></a>
|
||||
</article>
|
||||
|
||||
<article class="post-entry tag-entry">
|
||||
<header class="entry-header">
|
||||
<h2 class="entry-hint-parent">Remixes
|
||||
</h2>
|
||||
</header>
|
||||
<div class="entry-content">
|
||||
<p>Some remixed tunes for your wubby pleasure
|
||||
Remixes ChixNRibz (lost) Unfortunately I can’t find this one right off, but chronologically it’s the first “remix” I did - Bridges and Rivers by The Chicken Street Band. What follows is a byproduct of that project, though.
|
||||
Number One - Tophouse Technically the second remix I did. A great nerdy folk group, no shortage of LotR love at their shows (complete with live readings of passages from The Hobbit). I could hear the remix in my head on the first listen, this is what followed.
|
||||
...</p>
|
||||
</div>
|
||||
<footer class="entry-footer">
|
||||
|
||||
<span title='2026-08-03 10:28:19 -0400 EDT'>August 3, 2026</span> · <span>2 min</span></footer>
|
||||
<a class="entry-link" aria-label="post link to Remixes" href="//localhost:1313/music/techno/remixes/"></a>
|
||||
</article>
|
||||
|
||||
<article class="post-entry tag-entry">
|
||||
<header class="entry-header">
|
||||
<h2 class="entry-hint-parent">Poultry Highway
|
||||
</h2>
|
||||
</header>
|
||||
<div class="entry-content">
|
||||
<p>The spiritual successor to The Chicken Street Band, rockifying and expanding the existing setlist
|
||||
“Need some Honey” by Nathaniel Rateliff & the Night Sweats, in a sweaty bar in Hallowell Your browser does not support the video tag. “The Hollow” by yours truly, one of my favorite performances of this tune Your browser does not support the video tag. ...</p>
|
||||
</div>
|
||||
<footer class="entry-footer">
|
||||
|
||||
<span title='2026-08-02 22:31:41 -0400 EDT'>August 2, 2026</span> · <span>1 min</span></footer>
|
||||
<a class="entry-link" aria-label="post link to Poultry Highway" href="//localhost:1313/music/poultryhighway/"></a>
|
||||
</article>
|
||||
|
||||
<article class="post-entry tag-entry">
|
||||
<header class="entry-header">
|
||||
<h2 class="entry-hint-parent">Songs I wrote!
|
||||
</h2>
|
||||
</header>
|
||||
<div class="entry-content">
|
||||
<p>“The Hollow”, with The Chicken Street Band at Roots Revival Fest 8/2/24
|
||||
Your browser does not support the audio element. </p>
|
||||
</div>
|
||||
<footer class="entry-footer">
|
||||
|
||||
<span title='2026-08-01 23:40:44 +0000 UTC'>August 1, 2026</span> · <span>1 min</span></footer>
|
||||
<a class="entry-link" aria-label="post link to Songs I wrote!" href="//localhost:1313/music/originals/"></a>
|
||||
</article>
|
||||
|
||||
<article class="post-entry tag-entry">
|
||||
<header class="entry-header">
|
||||
<h2 class="entry-hint-parent">Statica EP - Avenged Sevenfold
|
||||
|
||||
@@ -6,8 +6,90 @@
|
||||
<description>Recent content in Music on TheWittyBanter.com</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Sat, 01 Aug 2026 20:06:17 +0000</lastBuildDate>
|
||||
<lastBuildDate>Mon, 03 Aug 2026 10:32:52 -0400</lastBuildDate>
|
||||
<atom:link href="//localhost:1313/tags/music/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Originals</title>
|
||||
<link>//localhost:1313/music/techno/originals/</link>
|
||||
<pubDate>Mon, 03 Aug 2026 10:32:52 -0400</pubDate>
|
||||
<guid>//localhost:1313/music/techno/originals/</guid>
|
||||
<description><p>These are the wubs I made. I am capable of original thought (for the most part)!</p>
|
||||
<hr>
|
||||
<h3 id="meager">Meager</h3>
|
||||
<p>The first original EDM composition I completed on FL Studio Mobile. It created a monster.</p>
|
||||
<figure>
|
||||
<audio controls preload="metadata" style="width: 100%;">
|
||||
<source src="//localhost:1313/audio/techno/original/Meager.mp3" type="audio/mpeg">
|
||||
Your browser does not support the audio element.
|
||||
</audio>
|
||||
|
||||
</figure>
|
||||
|
||||
<hr>
|
||||
<h3 id="ladybugs">Ladybugs</h3>
|
||||
<p>Named after the abundance of not-ladybugs-but-beetles that invade the house every year.</p>
|
||||
<figure>
|
||||
<audio controls preload="metadata" style="width: 100%;">
|
||||
<source src="//localhost:1313/audio/techno/original/Ladybugs.mp3" type="audio/mpeg">
|
||||
Your browser does not support the audio element.
|
||||
</audio>
|
||||
|
||||
</figure>
|
||||
|
||||
<hr>
|
||||
<h3 id="massive">Massive</h3>
|
||||
<p>I like that song &ldquo;Teardrop&rdquo; by Massive Attack quite a bit, I wanted to make a Massive Attack song. Don&rsquo;t mind the weird aetherial videogame-choir in the middle.</p></description>
|
||||
</item>
|
||||
<item>
|
||||
<title>Remixes</title>
|
||||
<link>//localhost:1313/music/techno/remixes/</link>
|
||||
<pubDate>Mon, 03 Aug 2026 10:28:19 -0400</pubDate>
|
||||
<guid>//localhost:1313/music/techno/remixes/</guid>
|
||||
<description><p><strong>Some remixed tunes for your wubby pleasure</strong></p>
|
||||
<h1 id="remixes">Remixes</h1>
|
||||
<h3 id="chixnribz-lost">ChixNRibz (lost)</h3>
|
||||
<p>Unfortunately I can&rsquo;t find this one right off, but chronologically it&rsquo;s the first &ldquo;remix&rdquo; I did - Bridges and Rivers by The Chicken Street Band. What follows is a byproduct of that project, though.</p>
|
||||
<hr>
|
||||
<h3 id="number-one---tophouse">Number One - <a href="https://tidal.com/artist/8994731">Tophouse</a></h3>
|
||||
<p>Technically the second remix I did. A great nerdy folk group, no shortage of LotR love at their shows (complete with live readings of passages from The Hobbit). I could hear the remix in my head on the first listen, this is what followed.</p></description>
|
||||
</item>
|
||||
<item>
|
||||
<title>Poultry Highway</title>
|
||||
<link>//localhost:1313/music/poultryhighway/</link>
|
||||
<pubDate>Sun, 02 Aug 2026 22:31:41 -0400</pubDate>
|
||||
<guid>//localhost:1313/music/poultryhighway/</guid>
|
||||
<description><p>The spiritual successor to The Chicken Street Band, rockifying and expanding the existing setlist</p>
|
||||
<hr>
|
||||
<p>&ldquo;Need some Honey&rdquo; by Nathaniel Rateliff &amp; the Night Sweats, in a sweaty bar in Hallowell
|
||||
<div class="video-wrapper" style="max-width: 50%; margin: 0 auto;">
|
||||
<video src="//localhost:1313/videos/poultry/needsomehoney.mp4" controls style="width: 100%; height: auto;">
|
||||
Your browser does not support the video tag.
|
||||
</video>
|
||||
</div>
|
||||
</p>
|
||||
<p>&ldquo;The Hollow&rdquo; by yours truly, one of my favorite performances of this tune
|
||||
<div class="video-wrapper" style="max-width: 50%; margin: 0 auto;">
|
||||
<video src="//localhost:1313/videos/poultry/hollow.mp4" controls style="width: 100%; height: auto;">
|
||||
Your browser does not support the video tag.
|
||||
</video>
|
||||
</div>
|
||||
</p></description>
|
||||
</item>
|
||||
<item>
|
||||
<title>Songs I wrote!</title>
|
||||
<link>//localhost:1313/music/originals/</link>
|
||||
<pubDate>Sat, 01 Aug 2026 23:40:44 +0000</pubDate>
|
||||
<guid>//localhost:1313/music/originals/</guid>
|
||||
<description><p>&ldquo;The Hollow&rdquo;, with The Chicken Street Band at Roots Revival Fest 8/2/24</p>
|
||||
<h2 id="hahahugoshortcode17s0hbhb"><figure>
|
||||
<audio controls preload="metadata" style="width: 100%;">
|
||||
<source src="//localhost:1313/audio/hollowroots.mp3" type="audio/mpeg">
|
||||
Your browser does not support the audio element.
|
||||
</audio>
|
||||
|
||||
</figure>
|
||||
</h2></description>
|
||||
</item>
|
||||
<item>
|
||||
<title>Statica EP - Avenged Sevenfold</title>
|
||||
<link>//localhost:1313/reviews/statica/</link>
|
||||
|
||||
@@ -0,0 +1,243 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="auto" data-theme="dark">
|
||||
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script><meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<title>Originals | TheWittyBanter.com</title>
|
||||
<meta name="keywords" content="">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="canonical" href="//localhost:1313/tags/originals/">
|
||||
<link crossorigin="anonymous" href="/assets/css/stylesheet.cd9298b33628769aa1bc1acebbbfd7aa11ce81dfe03484d479e1907760249a1d.css" integrity="sha256-zZKYszYodpqhvBrOu7/XqhHOgd/gNITUeeGQd2Akmh0=" rel="preload stylesheet" as="style">
|
||||
<link rel="icon" href="//localhost:1313/favicon.ico">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="//localhost:1313/favicon-16x16.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="//localhost:1313/favicon-32x32.png">
|
||||
<link rel="apple-touch-icon" href="//localhost:1313/apple-touch-icon.png">
|
||||
<link rel="mask-icon" href="//localhost:1313/safari-pinned-tab.svg">
|
||||
<meta name="theme-color" content="#2e2e33">
|
||||
<meta name="msapplication-TileColor" content="#2e2e33">
|
||||
<link rel="alternate" type="application/rss+xml" href="//localhost:1313/tags/originals/index.xml" title="rss">
|
||||
<link rel="alternate" hreflang="en" href="//localhost:1313/tags/originals/">
|
||||
<noscript>
|
||||
<style>
|
||||
#theme-toggle,
|
||||
.top-link {
|
||||
display: none;
|
||||
}
|
||||
|
||||
</style>
|
||||
</noscript>
|
||||
<script>
|
||||
if (localStorage.getItem("pref-theme") === "light") {
|
||||
document.querySelector("html").dataset.theme = 'light';
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body class="list" id="top">
|
||||
<header class="header">
|
||||
<nav class="header-nav">
|
||||
<div class="logo">
|
||||
<a href="//localhost:1313/" accesskey="h" title="TheWittyBanter.com (Alt + H)">TheWittyBanter.com</a>
|
||||
<div class="logo-switches">
|
||||
<button id="theme-toggle" class="theme-toggle" accesskey="t" title="(Alt + T)" aria-label="Toggle theme">
|
||||
<svg class="moon" xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"
|
||||
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||
stroke-linejoin="round">
|
||||
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
|
||||
</svg>
|
||||
<svg class="sun" xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"
|
||||
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||
stroke-linejoin="round">
|
||||
<circle cx="12" cy="12" r="5"></circle>
|
||||
<line x1="12" y1="1" x2="12" y2="3"></line>
|
||||
<line x1="12" y1="21" x2="12" y2="23"></line>
|
||||
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
|
||||
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
|
||||
<line x1="1" y1="12" x2="3" y2="12"></line>
|
||||
<line x1="21" y1="12" x2="23" y2="12"></line>
|
||||
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
|
||||
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<ul id="menu" class="menu">
|
||||
<li>
|
||||
<a href="//localhost:1313/welcome" title="Welcome">
|
||||
<span>Welcome</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/shows" title="Shows">
|
||||
<span>Shows</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/music" title="Music">
|
||||
<span>Music</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/reviews" title="Reviews">
|
||||
<span>Reviews</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/posts" title="Blog">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/docs" title="Docs">
|
||||
<span>Docs</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/tags/" title="Tags">
|
||||
<span>Tags</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/search/" title="Search (Alt + /)" accesskey=/>
|
||||
<span>Search</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="main">
|
||||
<header class="page-header"><nav class="breadcrumbs" role="navigation" aria-label="Breadcrumb">
|
||||
<a href="/">Home</a>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right">
|
||||
<polyline points="9 18 15 12 9 6"></polyline>
|
||||
</svg>
|
||||
<a href="/tags/">Tags</a>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right">
|
||||
<polyline points="9 18 15 12 9 6"></polyline>
|
||||
</svg>
|
||||
</nav>
|
||||
<h1>
|
||||
Originals
|
||||
</h1>
|
||||
</header>
|
||||
|
||||
<article class="post-entry tag-entry">
|
||||
<header class="entry-header">
|
||||
<h2 class="entry-hint-parent">Originals
|
||||
</h2>
|
||||
</header>
|
||||
<div class="entry-content">
|
||||
<p>These are the wubs I made. I am capable of original thought (for the most part)!
|
||||
Meager The first original EDM composition I completed on FL Studio Mobile. It created a monster.
|
||||
Your browser does not support the audio element. Ladybugs Named after the abundance of not-ladybugs-but-beetles that invade the house every year.
|
||||
Your browser does not support the audio element. Massive I like that song “Teardrop” by Massive Attack quite a bit, I wanted to make a Massive Attack song. Don’t mind the weird aetherial videogame-choir in the middle.
|
||||
...</p>
|
||||
</div>
|
||||
<footer class="entry-footer">
|
||||
|
||||
<span title='2026-08-03 10:32:52 -0400 EDT'>August 3, 2026</span> · <span>2 min</span></footer>
|
||||
<a class="entry-link" aria-label="post link to Originals" href="//localhost:1313/music/techno/originals/"></a>
|
||||
</article>
|
||||
|
||||
<article class="post-entry tag-entry">
|
||||
<header class="entry-header">
|
||||
<h2 class="entry-hint-parent">Songs I wrote!
|
||||
</h2>
|
||||
</header>
|
||||
<div class="entry-content">
|
||||
<p>“The Hollow”, with The Chicken Street Band at Roots Revival Fest 8/2/24
|
||||
Your browser does not support the audio element. </p>
|
||||
</div>
|
||||
<footer class="entry-footer">
|
||||
|
||||
<span title='2026-08-01 23:40:44 +0000 UTC'>August 1, 2026</span> · <span>1 min</span></footer>
|
||||
<a class="entry-link" aria-label="post link to Songs I wrote!" href="//localhost:1313/music/originals/"></a>
|
||||
</article>
|
||||
</main>
|
||||
|
||||
<footer class="footer">
|
||||
<span>© 2026 <a href="//localhost:1313/">TheWittyBanter.com</a></span> ·
|
||||
|
||||
|
||||
|
||||
<span>
|
||||
Powered by
|
||||
<a href="https://gohugo.io/?utm_source=papermod" rel="noopener" target="_blank">Hugo</a> &
|
||||
<a href="https://github.com/adityatelange/hugo-PaperMod/" rel="noopener" target="_blank">PaperMod</a>
|
||||
</span>
|
||||
</footer>
|
||||
<a href="#top" id="top-link" class="top-link hidden" aria-label="go to top" title="Go to Top (Alt + G)" accesskey="g">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevrons-up">
|
||||
<polyline points="17 11 12 6 7 11"></polyline>
|
||||
<polyline points="17 18 12 13 7 18"></polyline>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
<script>
|
||||
let menu = document.getElementById('menu');
|
||||
if (menu) {
|
||||
|
||||
const scrollPosition = localStorage.getItem("menu-scroll-position");
|
||||
if (scrollPosition) {
|
||||
menu.scrollLeft = parseInt(scrollPosition, 10);
|
||||
}
|
||||
|
||||
menu.onscroll = function () {
|
||||
localStorage.setItem("menu-scroll-position", menu.scrollLeft);
|
||||
}
|
||||
}
|
||||
|
||||
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
||||
anchor.addEventListener("click", function (e) {
|
||||
e.preventDefault();
|
||||
var id = this.getAttribute("href").substr(1);
|
||||
if (!window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
|
||||
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView({
|
||||
behavior: "smooth"
|
||||
});
|
||||
} else {
|
||||
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView();
|
||||
}
|
||||
if (id === "top") {
|
||||
history.replaceState(null, null, " ");
|
||||
} else {
|
||||
history.pushState(null, null, `#${id}`);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
<script>
|
||||
var toplink = document.getElementById("top-link");
|
||||
window.onscroll = function () {
|
||||
const scrollThreshold = window.innerHeight;
|
||||
if (document.body.scrollTop > scrollThreshold || document.documentElement.scrollTop > scrollThreshold) {
|
||||
toplink.classList.remove("hidden");
|
||||
} else {
|
||||
toplink.classList.add("hidden");
|
||||
}
|
||||
};
|
||||
|
||||
</script>
|
||||
<script>
|
||||
document.getElementById("theme-toggle").addEventListener("click", () => {
|
||||
const html = document.querySelector("html");
|
||||
if (html.dataset.theme === "dark") {
|
||||
html.dataset.theme = 'light';
|
||||
localStorage.setItem("pref-theme", 'light');
|
||||
} else {
|
||||
html.dataset.theme = 'dark';
|
||||
localStorage.setItem("pref-theme", 'dark');
|
||||
}
|
||||
})
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,59 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
||||
<channel>
|
||||
<title>Originals on TheWittyBanter.com</title>
|
||||
<link>//localhost:1313/tags/originals/</link>
|
||||
<description>Recent content in Originals on TheWittyBanter.com</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Mon, 03 Aug 2026 10:32:52 -0400</lastBuildDate>
|
||||
<atom:link href="//localhost:1313/tags/originals/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Originals</title>
|
||||
<link>//localhost:1313/music/techno/originals/</link>
|
||||
<pubDate>Mon, 03 Aug 2026 10:32:52 -0400</pubDate>
|
||||
<guid>//localhost:1313/music/techno/originals/</guid>
|
||||
<description><p>These are the wubs I made. I am capable of original thought (for the most part)!</p>
|
||||
<hr>
|
||||
<h3 id="meager">Meager</h3>
|
||||
<p>The first original EDM composition I completed on FL Studio Mobile. It created a monster.</p>
|
||||
<figure>
|
||||
<audio controls preload="metadata" style="width: 100%;">
|
||||
<source src="//localhost:1313/audio/techno/original/Meager.mp3" type="audio/mpeg">
|
||||
Your browser does not support the audio element.
|
||||
</audio>
|
||||
|
||||
</figure>
|
||||
|
||||
<hr>
|
||||
<h3 id="ladybugs">Ladybugs</h3>
|
||||
<p>Named after the abundance of not-ladybugs-but-beetles that invade the house every year.</p>
|
||||
<figure>
|
||||
<audio controls preload="metadata" style="width: 100%;">
|
||||
<source src="//localhost:1313/audio/techno/original/Ladybugs.mp3" type="audio/mpeg">
|
||||
Your browser does not support the audio element.
|
||||
</audio>
|
||||
|
||||
</figure>
|
||||
|
||||
<hr>
|
||||
<h3 id="massive">Massive</h3>
|
||||
<p>I like that song &ldquo;Teardrop&rdquo; by Massive Attack quite a bit, I wanted to make a Massive Attack song. Don&rsquo;t mind the weird aetherial videogame-choir in the middle.</p></description>
|
||||
</item>
|
||||
<item>
|
||||
<title>Songs I wrote!</title>
|
||||
<link>//localhost:1313/music/originals/</link>
|
||||
<pubDate>Sat, 01 Aug 2026 23:40:44 +0000</pubDate>
|
||||
<guid>//localhost:1313/music/originals/</guid>
|
||||
<description><p>&ldquo;The Hollow&rdquo;, with The Chicken Street Band at Roots Revival Fest 8/2/24</p>
|
||||
<h2 id="hahahugoshortcode17s0hbhb"><figure>
|
||||
<audio controls preload="metadata" style="width: 100%;">
|
||||
<source src="//localhost:1313/audio/hollowroots.mp3" type="audio/mpeg">
|
||||
Your browser does not support the audio element.
|
||||
</audio>
|
||||
|
||||
</figure>
|
||||
</h2></description>
|
||||
</item>
|
||||
</channel>
|
||||
</rss>
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>//localhost:1313/tags/originals/</title>
|
||||
<link rel="canonical" href="//localhost:1313/tags/originals/">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="refresh" content="0; url=//localhost:1313/tags/originals/">
|
||||
</head>
|
||||
</html>
|
||||
@@ -0,0 +1,225 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="auto" data-theme="dark">
|
||||
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script><meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<title>Poultryhighway | TheWittyBanter.com</title>
|
||||
<meta name="keywords" content="">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="canonical" href="//localhost:1313/tags/poultryhighway/">
|
||||
<link crossorigin="anonymous" href="/assets/css/stylesheet.cd9298b33628769aa1bc1acebbbfd7aa11ce81dfe03484d479e1907760249a1d.css" integrity="sha256-zZKYszYodpqhvBrOu7/XqhHOgd/gNITUeeGQd2Akmh0=" rel="preload stylesheet" as="style">
|
||||
<link rel="icon" href="//localhost:1313/favicon.ico">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="//localhost:1313/favicon-16x16.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="//localhost:1313/favicon-32x32.png">
|
||||
<link rel="apple-touch-icon" href="//localhost:1313/apple-touch-icon.png">
|
||||
<link rel="mask-icon" href="//localhost:1313/safari-pinned-tab.svg">
|
||||
<meta name="theme-color" content="#2e2e33">
|
||||
<meta name="msapplication-TileColor" content="#2e2e33">
|
||||
<link rel="alternate" type="application/rss+xml" href="//localhost:1313/tags/poultryhighway/index.xml" title="rss">
|
||||
<link rel="alternate" hreflang="en" href="//localhost:1313/tags/poultryhighway/">
|
||||
<noscript>
|
||||
<style>
|
||||
#theme-toggle,
|
||||
.top-link {
|
||||
display: none;
|
||||
}
|
||||
|
||||
</style>
|
||||
</noscript>
|
||||
<script>
|
||||
if (localStorage.getItem("pref-theme") === "light") {
|
||||
document.querySelector("html").dataset.theme = 'light';
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body class="list" id="top">
|
||||
<header class="header">
|
||||
<nav class="header-nav">
|
||||
<div class="logo">
|
||||
<a href="//localhost:1313/" accesskey="h" title="TheWittyBanter.com (Alt + H)">TheWittyBanter.com</a>
|
||||
<div class="logo-switches">
|
||||
<button id="theme-toggle" class="theme-toggle" accesskey="t" title="(Alt + T)" aria-label="Toggle theme">
|
||||
<svg class="moon" xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"
|
||||
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||
stroke-linejoin="round">
|
||||
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
|
||||
</svg>
|
||||
<svg class="sun" xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"
|
||||
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||
stroke-linejoin="round">
|
||||
<circle cx="12" cy="12" r="5"></circle>
|
||||
<line x1="12" y1="1" x2="12" y2="3"></line>
|
||||
<line x1="12" y1="21" x2="12" y2="23"></line>
|
||||
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
|
||||
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
|
||||
<line x1="1" y1="12" x2="3" y2="12"></line>
|
||||
<line x1="21" y1="12" x2="23" y2="12"></line>
|
||||
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
|
||||
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<ul id="menu" class="menu">
|
||||
<li>
|
||||
<a href="//localhost:1313/welcome" title="Welcome">
|
||||
<span>Welcome</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/shows" title="Shows">
|
||||
<span>Shows</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/music" title="Music">
|
||||
<span>Music</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/reviews" title="Reviews">
|
||||
<span>Reviews</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/posts" title="Blog">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/docs" title="Docs">
|
||||
<span>Docs</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/tags/" title="Tags">
|
||||
<span>Tags</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/search/" title="Search (Alt + /)" accesskey=/>
|
||||
<span>Search</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="main">
|
||||
<header class="page-header"><nav class="breadcrumbs" role="navigation" aria-label="Breadcrumb">
|
||||
<a href="/">Home</a>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right">
|
||||
<polyline points="9 18 15 12 9 6"></polyline>
|
||||
</svg>
|
||||
<a href="/tags/">Tags</a>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right">
|
||||
<polyline points="9 18 15 12 9 6"></polyline>
|
||||
</svg>
|
||||
</nav>
|
||||
<h1>
|
||||
Poultryhighway
|
||||
</h1>
|
||||
</header>
|
||||
|
||||
<article class="post-entry tag-entry">
|
||||
<header class="entry-header">
|
||||
<h2 class="entry-hint-parent">Poultry Highway
|
||||
</h2>
|
||||
</header>
|
||||
<div class="entry-content">
|
||||
<p>The spiritual successor to The Chicken Street Band, rockifying and expanding the existing setlist
|
||||
“Need some Honey” by Nathaniel Rateliff & the Night Sweats, in a sweaty bar in Hallowell Your browser does not support the video tag. “The Hollow” by yours truly, one of my favorite performances of this tune Your browser does not support the video tag. ...</p>
|
||||
</div>
|
||||
<footer class="entry-footer">
|
||||
|
||||
<span title='2026-08-02 22:31:41 -0400 EDT'>August 2, 2026</span> · <span>1 min</span></footer>
|
||||
<a class="entry-link" aria-label="post link to Poultry Highway" href="//localhost:1313/music/poultryhighway/"></a>
|
||||
</article>
|
||||
</main>
|
||||
|
||||
<footer class="footer">
|
||||
<span>© 2026 <a href="//localhost:1313/">TheWittyBanter.com</a></span> ·
|
||||
|
||||
|
||||
|
||||
<span>
|
||||
Powered by
|
||||
<a href="https://gohugo.io/?utm_source=papermod" rel="noopener" target="_blank">Hugo</a> &
|
||||
<a href="https://github.com/adityatelange/hugo-PaperMod/" rel="noopener" target="_blank">PaperMod</a>
|
||||
</span>
|
||||
</footer>
|
||||
<a href="#top" id="top-link" class="top-link hidden" aria-label="go to top" title="Go to Top (Alt + G)" accesskey="g">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevrons-up">
|
||||
<polyline points="17 11 12 6 7 11"></polyline>
|
||||
<polyline points="17 18 12 13 7 18"></polyline>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
<script>
|
||||
let menu = document.getElementById('menu');
|
||||
if (menu) {
|
||||
|
||||
const scrollPosition = localStorage.getItem("menu-scroll-position");
|
||||
if (scrollPosition) {
|
||||
menu.scrollLeft = parseInt(scrollPosition, 10);
|
||||
}
|
||||
|
||||
menu.onscroll = function () {
|
||||
localStorage.setItem("menu-scroll-position", menu.scrollLeft);
|
||||
}
|
||||
}
|
||||
|
||||
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
||||
anchor.addEventListener("click", function (e) {
|
||||
e.preventDefault();
|
||||
var id = this.getAttribute("href").substr(1);
|
||||
if (!window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
|
||||
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView({
|
||||
behavior: "smooth"
|
||||
});
|
||||
} else {
|
||||
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView();
|
||||
}
|
||||
if (id === "top") {
|
||||
history.replaceState(null, null, " ");
|
||||
} else {
|
||||
history.pushState(null, null, `#${id}`);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
<script>
|
||||
var toplink = document.getElementById("top-link");
|
||||
window.onscroll = function () {
|
||||
const scrollThreshold = window.innerHeight;
|
||||
if (document.body.scrollTop > scrollThreshold || document.documentElement.scrollTop > scrollThreshold) {
|
||||
toplink.classList.remove("hidden");
|
||||
} else {
|
||||
toplink.classList.add("hidden");
|
||||
}
|
||||
};
|
||||
|
||||
</script>
|
||||
<script>
|
||||
document.getElementById("theme-toggle").addEventListener("click", () => {
|
||||
const html = document.querySelector("html");
|
||||
if (html.dataset.theme === "dark") {
|
||||
html.dataset.theme = 'light';
|
||||
localStorage.setItem("pref-theme", 'light');
|
||||
} else {
|
||||
html.dataset.theme = 'dark';
|
||||
localStorage.setItem("pref-theme", 'dark');
|
||||
}
|
||||
})
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
||||
<channel>
|
||||
<title>Poultryhighway on TheWittyBanter.com</title>
|
||||
<link>//localhost:1313/tags/poultryhighway/</link>
|
||||
<description>Recent content in Poultryhighway on TheWittyBanter.com</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Sun, 02 Aug 2026 22:31:41 -0400</lastBuildDate>
|
||||
<atom:link href="//localhost:1313/tags/poultryhighway/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Poultry Highway</title>
|
||||
<link>//localhost:1313/music/poultryhighway/</link>
|
||||
<pubDate>Sun, 02 Aug 2026 22:31:41 -0400</pubDate>
|
||||
<guid>//localhost:1313/music/poultryhighway/</guid>
|
||||
<description><p>The spiritual successor to The Chicken Street Band, rockifying and expanding the existing setlist</p>
|
||||
<hr>
|
||||
<p>&ldquo;Need some Honey&rdquo; by Nathaniel Rateliff &amp; the Night Sweats, in a sweaty bar in Hallowell
|
||||
<div class="video-wrapper" style="max-width: 50%; margin: 0 auto;">
|
||||
<video src="//localhost:1313/videos/poultry/needsomehoney.mp4" controls style="width: 100%; height: auto;">
|
||||
Your browser does not support the video tag.
|
||||
</video>
|
||||
</div>
|
||||
</p>
|
||||
<p>&ldquo;The Hollow&rdquo; by yours truly, one of my favorite performances of this tune
|
||||
<div class="video-wrapper" style="max-width: 50%; margin: 0 auto;">
|
||||
<video src="//localhost:1313/videos/poultry/hollow.mp4" controls style="width: 100%; height: auto;">
|
||||
Your browser does not support the video tag.
|
||||
</video>
|
||||
</div>
|
||||
</p></description>
|
||||
</item>
|
||||
</channel>
|
||||
</rss>
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>//localhost:1313/tags/poultryhighway/</title>
|
||||
<link rel="canonical" href="//localhost:1313/tags/poultryhighway/">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="refresh" content="0; url=//localhost:1313/tags/poultryhighway/">
|
||||
</head>
|
||||
</html>
|
||||
@@ -0,0 +1,227 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="auto" data-theme="dark">
|
||||
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script><meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<title>Remixes | TheWittyBanter.com</title>
|
||||
<meta name="keywords" content="">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="canonical" href="//localhost:1313/tags/remixes/">
|
||||
<link crossorigin="anonymous" href="/assets/css/stylesheet.cd9298b33628769aa1bc1acebbbfd7aa11ce81dfe03484d479e1907760249a1d.css" integrity="sha256-zZKYszYodpqhvBrOu7/XqhHOgd/gNITUeeGQd2Akmh0=" rel="preload stylesheet" as="style">
|
||||
<link rel="icon" href="//localhost:1313/favicon.ico">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="//localhost:1313/favicon-16x16.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="//localhost:1313/favicon-32x32.png">
|
||||
<link rel="apple-touch-icon" href="//localhost:1313/apple-touch-icon.png">
|
||||
<link rel="mask-icon" href="//localhost:1313/safari-pinned-tab.svg">
|
||||
<meta name="theme-color" content="#2e2e33">
|
||||
<meta name="msapplication-TileColor" content="#2e2e33">
|
||||
<link rel="alternate" type="application/rss+xml" href="//localhost:1313/tags/remixes/index.xml" title="rss">
|
||||
<link rel="alternate" hreflang="en" href="//localhost:1313/tags/remixes/">
|
||||
<noscript>
|
||||
<style>
|
||||
#theme-toggle,
|
||||
.top-link {
|
||||
display: none;
|
||||
}
|
||||
|
||||
</style>
|
||||
</noscript>
|
||||
<script>
|
||||
if (localStorage.getItem("pref-theme") === "light") {
|
||||
document.querySelector("html").dataset.theme = 'light';
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body class="list" id="top">
|
||||
<header class="header">
|
||||
<nav class="header-nav">
|
||||
<div class="logo">
|
||||
<a href="//localhost:1313/" accesskey="h" title="TheWittyBanter.com (Alt + H)">TheWittyBanter.com</a>
|
||||
<div class="logo-switches">
|
||||
<button id="theme-toggle" class="theme-toggle" accesskey="t" title="(Alt + T)" aria-label="Toggle theme">
|
||||
<svg class="moon" xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"
|
||||
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||
stroke-linejoin="round">
|
||||
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
|
||||
</svg>
|
||||
<svg class="sun" xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"
|
||||
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||
stroke-linejoin="round">
|
||||
<circle cx="12" cy="12" r="5"></circle>
|
||||
<line x1="12" y1="1" x2="12" y2="3"></line>
|
||||
<line x1="12" y1="21" x2="12" y2="23"></line>
|
||||
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
|
||||
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
|
||||
<line x1="1" y1="12" x2="3" y2="12"></line>
|
||||
<line x1="21" y1="12" x2="23" y2="12"></line>
|
||||
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
|
||||
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<ul id="menu" class="menu">
|
||||
<li>
|
||||
<a href="//localhost:1313/welcome" title="Welcome">
|
||||
<span>Welcome</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/shows" title="Shows">
|
||||
<span>Shows</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/music" title="Music">
|
||||
<span>Music</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/reviews" title="Reviews">
|
||||
<span>Reviews</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/posts" title="Blog">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/docs" title="Docs">
|
||||
<span>Docs</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/tags/" title="Tags">
|
||||
<span>Tags</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/search/" title="Search (Alt + /)" accesskey=/>
|
||||
<span>Search</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="main">
|
||||
<header class="page-header"><nav class="breadcrumbs" role="navigation" aria-label="Breadcrumb">
|
||||
<a href="/">Home</a>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right">
|
||||
<polyline points="9 18 15 12 9 6"></polyline>
|
||||
</svg>
|
||||
<a href="/tags/">Tags</a>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right">
|
||||
<polyline points="9 18 15 12 9 6"></polyline>
|
||||
</svg>
|
||||
</nav>
|
||||
<h1>
|
||||
Remixes
|
||||
</h1>
|
||||
</header>
|
||||
|
||||
<article class="post-entry tag-entry">
|
||||
<header class="entry-header">
|
||||
<h2 class="entry-hint-parent">Remixes
|
||||
</h2>
|
||||
</header>
|
||||
<div class="entry-content">
|
||||
<p>Some remixed tunes for your wubby pleasure
|
||||
Remixes ChixNRibz (lost) Unfortunately I can’t find this one right off, but chronologically it’s the first “remix” I did - Bridges and Rivers by The Chicken Street Band. What follows is a byproduct of that project, though.
|
||||
Number One - Tophouse Technically the second remix I did. A great nerdy folk group, no shortage of LotR love at their shows (complete with live readings of passages from The Hobbit). I could hear the remix in my head on the first listen, this is what followed.
|
||||
...</p>
|
||||
</div>
|
||||
<footer class="entry-footer">
|
||||
|
||||
<span title='2026-08-03 10:28:19 -0400 EDT'>August 3, 2026</span> · <span>2 min</span></footer>
|
||||
<a class="entry-link" aria-label="post link to Remixes" href="//localhost:1313/music/techno/remixes/"></a>
|
||||
</article>
|
||||
</main>
|
||||
|
||||
<footer class="footer">
|
||||
<span>© 2026 <a href="//localhost:1313/">TheWittyBanter.com</a></span> ·
|
||||
|
||||
|
||||
|
||||
<span>
|
||||
Powered by
|
||||
<a href="https://gohugo.io/?utm_source=papermod" rel="noopener" target="_blank">Hugo</a> &
|
||||
<a href="https://github.com/adityatelange/hugo-PaperMod/" rel="noopener" target="_blank">PaperMod</a>
|
||||
</span>
|
||||
</footer>
|
||||
<a href="#top" id="top-link" class="top-link hidden" aria-label="go to top" title="Go to Top (Alt + G)" accesskey="g">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevrons-up">
|
||||
<polyline points="17 11 12 6 7 11"></polyline>
|
||||
<polyline points="17 18 12 13 7 18"></polyline>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
<script>
|
||||
let menu = document.getElementById('menu');
|
||||
if (menu) {
|
||||
|
||||
const scrollPosition = localStorage.getItem("menu-scroll-position");
|
||||
if (scrollPosition) {
|
||||
menu.scrollLeft = parseInt(scrollPosition, 10);
|
||||
}
|
||||
|
||||
menu.onscroll = function () {
|
||||
localStorage.setItem("menu-scroll-position", menu.scrollLeft);
|
||||
}
|
||||
}
|
||||
|
||||
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
||||
anchor.addEventListener("click", function (e) {
|
||||
e.preventDefault();
|
||||
var id = this.getAttribute("href").substr(1);
|
||||
if (!window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
|
||||
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView({
|
||||
behavior: "smooth"
|
||||
});
|
||||
} else {
|
||||
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView();
|
||||
}
|
||||
if (id === "top") {
|
||||
history.replaceState(null, null, " ");
|
||||
} else {
|
||||
history.pushState(null, null, `#${id}`);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
<script>
|
||||
var toplink = document.getElementById("top-link");
|
||||
window.onscroll = function () {
|
||||
const scrollThreshold = window.innerHeight;
|
||||
if (document.body.scrollTop > scrollThreshold || document.documentElement.scrollTop > scrollThreshold) {
|
||||
toplink.classList.remove("hidden");
|
||||
} else {
|
||||
toplink.classList.add("hidden");
|
||||
}
|
||||
};
|
||||
|
||||
</script>
|
||||
<script>
|
||||
document.getElementById("theme-toggle").addEventListener("click", () => {
|
||||
const html = document.querySelector("html");
|
||||
if (html.dataset.theme === "dark") {
|
||||
html.dataset.theme = 'light';
|
||||
localStorage.setItem("pref-theme", 'light');
|
||||
} else {
|
||||
html.dataset.theme = 'dark';
|
||||
localStorage.setItem("pref-theme", 'dark');
|
||||
}
|
||||
})
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
||||
<channel>
|
||||
<title>Remixes on TheWittyBanter.com</title>
|
||||
<link>//localhost:1313/tags/remixes/</link>
|
||||
<description>Recent content in Remixes on TheWittyBanter.com</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Mon, 03 Aug 2026 10:28:19 -0400</lastBuildDate>
|
||||
<atom:link href="//localhost:1313/tags/remixes/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Remixes</title>
|
||||
<link>//localhost:1313/music/techno/remixes/</link>
|
||||
<pubDate>Mon, 03 Aug 2026 10:28:19 -0400</pubDate>
|
||||
<guid>//localhost:1313/music/techno/remixes/</guid>
|
||||
<description><p><strong>Some remixed tunes for your wubby pleasure</strong></p>
|
||||
<h1 id="remixes">Remixes</h1>
|
||||
<h3 id="chixnribz-lost">ChixNRibz (lost)</h3>
|
||||
<p>Unfortunately I can&rsquo;t find this one right off, but chronologically it&rsquo;s the first &ldquo;remix&rdquo; I did - Bridges and Rivers by The Chicken Street Band. What follows is a byproduct of that project, though.</p>
|
||||
<hr>
|
||||
<h3 id="number-one---tophouse">Number One - <a href="https://tidal.com/artist/8994731">Tophouse</a></h3>
|
||||
<p>Technically the second remix I did. A great nerdy folk group, no shortage of LotR love at their shows (complete with live readings of passages from The Hobbit). I could hear the remix in my head on the first listen, this is what followed.</p></description>
|
||||
</item>
|
||||
</channel>
|
||||
</rss>
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>//localhost:1313/tags/remixes/</title>
|
||||
<link rel="canonical" href="//localhost:1313/tags/remixes/">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="refresh" content="0; url=//localhost:1313/tags/remixes/">
|
||||
</head>
|
||||
</html>
|
||||
@@ -0,0 +1,245 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="auto" data-theme="dark">
|
||||
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script><meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<title>Techno | TheWittyBanter.com</title>
|
||||
<meta name="keywords" content="">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="canonical" href="//localhost:1313/tags/techno/">
|
||||
<link crossorigin="anonymous" href="/assets/css/stylesheet.cd9298b33628769aa1bc1acebbbfd7aa11ce81dfe03484d479e1907760249a1d.css" integrity="sha256-zZKYszYodpqhvBrOu7/XqhHOgd/gNITUeeGQd2Akmh0=" rel="preload stylesheet" as="style">
|
||||
<link rel="icon" href="//localhost:1313/favicon.ico">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="//localhost:1313/favicon-16x16.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="//localhost:1313/favicon-32x32.png">
|
||||
<link rel="apple-touch-icon" href="//localhost:1313/apple-touch-icon.png">
|
||||
<link rel="mask-icon" href="//localhost:1313/safari-pinned-tab.svg">
|
||||
<meta name="theme-color" content="#2e2e33">
|
||||
<meta name="msapplication-TileColor" content="#2e2e33">
|
||||
<link rel="alternate" type="application/rss+xml" href="//localhost:1313/tags/techno/index.xml" title="rss">
|
||||
<link rel="alternate" hreflang="en" href="//localhost:1313/tags/techno/">
|
||||
<noscript>
|
||||
<style>
|
||||
#theme-toggle,
|
||||
.top-link {
|
||||
display: none;
|
||||
}
|
||||
|
||||
</style>
|
||||
</noscript>
|
||||
<script>
|
||||
if (localStorage.getItem("pref-theme") === "light") {
|
||||
document.querySelector("html").dataset.theme = 'light';
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body class="list" id="top">
|
||||
<header class="header">
|
||||
<nav class="header-nav">
|
||||
<div class="logo">
|
||||
<a href="//localhost:1313/" accesskey="h" title="TheWittyBanter.com (Alt + H)">TheWittyBanter.com</a>
|
||||
<div class="logo-switches">
|
||||
<button id="theme-toggle" class="theme-toggle" accesskey="t" title="(Alt + T)" aria-label="Toggle theme">
|
||||
<svg class="moon" xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"
|
||||
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||
stroke-linejoin="round">
|
||||
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
|
||||
</svg>
|
||||
<svg class="sun" xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"
|
||||
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||
stroke-linejoin="round">
|
||||
<circle cx="12" cy="12" r="5"></circle>
|
||||
<line x1="12" y1="1" x2="12" y2="3"></line>
|
||||
<line x1="12" y1="21" x2="12" y2="23"></line>
|
||||
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
|
||||
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
|
||||
<line x1="1" y1="12" x2="3" y2="12"></line>
|
||||
<line x1="21" y1="12" x2="23" y2="12"></line>
|
||||
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
|
||||
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<ul id="menu" class="menu">
|
||||
<li>
|
||||
<a href="//localhost:1313/welcome" title="Welcome">
|
||||
<span>Welcome</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/shows" title="Shows">
|
||||
<span>Shows</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/music" title="Music">
|
||||
<span>Music</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/reviews" title="Reviews">
|
||||
<span>Reviews</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/posts" title="Blog">
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/docs" title="Docs">
|
||||
<span>Docs</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/tags/" title="Tags">
|
||||
<span>Tags</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="//localhost:1313/search/" title="Search (Alt + /)" accesskey=/>
|
||||
<span>Search</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="main">
|
||||
<header class="page-header"><nav class="breadcrumbs" role="navigation" aria-label="Breadcrumb">
|
||||
<a href="/">Home</a>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right">
|
||||
<polyline points="9 18 15 12 9 6"></polyline>
|
||||
</svg>
|
||||
<a href="/tags/">Tags</a>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right">
|
||||
<polyline points="9 18 15 12 9 6"></polyline>
|
||||
</svg>
|
||||
</nav>
|
||||
<h1>
|
||||
Techno
|
||||
</h1>
|
||||
</header>
|
||||
|
||||
<article class="post-entry tag-entry">
|
||||
<header class="entry-header">
|
||||
<h2 class="entry-hint-parent">Originals
|
||||
</h2>
|
||||
</header>
|
||||
<div class="entry-content">
|
||||
<p>These are the wubs I made. I am capable of original thought (for the most part)!
|
||||
Meager The first original EDM composition I completed on FL Studio Mobile. It created a monster.
|
||||
Your browser does not support the audio element. Ladybugs Named after the abundance of not-ladybugs-but-beetles that invade the house every year.
|
||||
Your browser does not support the audio element. Massive I like that song “Teardrop” by Massive Attack quite a bit, I wanted to make a Massive Attack song. Don’t mind the weird aetherial videogame-choir in the middle.
|
||||
...</p>
|
||||
</div>
|
||||
<footer class="entry-footer">
|
||||
|
||||
<span title='2026-08-03 10:32:52 -0400 EDT'>August 3, 2026</span> · <span>2 min</span></footer>
|
||||
<a class="entry-link" aria-label="post link to Originals" href="//localhost:1313/music/techno/originals/"></a>
|
||||
</article>
|
||||
|
||||
<article class="post-entry tag-entry">
|
||||
<header class="entry-header">
|
||||
<h2 class="entry-hint-parent">Remixes
|
||||
</h2>
|
||||
</header>
|
||||
<div class="entry-content">
|
||||
<p>Some remixed tunes for your wubby pleasure
|
||||
Remixes ChixNRibz (lost) Unfortunately I can’t find this one right off, but chronologically it’s the first “remix” I did - Bridges and Rivers by The Chicken Street Band. What follows is a byproduct of that project, though.
|
||||
Number One - Tophouse Technically the second remix I did. A great nerdy folk group, no shortage of LotR love at their shows (complete with live readings of passages from The Hobbit). I could hear the remix in my head on the first listen, this is what followed.
|
||||
...</p>
|
||||
</div>
|
||||
<footer class="entry-footer">
|
||||
|
||||
<span title='2026-08-03 10:28:19 -0400 EDT'>August 3, 2026</span> · <span>2 min</span></footer>
|
||||
<a class="entry-link" aria-label="post link to Remixes" href="//localhost:1313/music/techno/remixes/"></a>
|
||||
</article>
|
||||
</main>
|
||||
|
||||
<footer class="footer">
|
||||
<span>© 2026 <a href="//localhost:1313/">TheWittyBanter.com</a></span> ·
|
||||
|
||||
|
||||
|
||||
<span>
|
||||
Powered by
|
||||
<a href="https://gohugo.io/?utm_source=papermod" rel="noopener" target="_blank">Hugo</a> &
|
||||
<a href="https://github.com/adityatelange/hugo-PaperMod/" rel="noopener" target="_blank">PaperMod</a>
|
||||
</span>
|
||||
</footer>
|
||||
<a href="#top" id="top-link" class="top-link hidden" aria-label="go to top" title="Go to Top (Alt + G)" accesskey="g">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
||||
stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevrons-up">
|
||||
<polyline points="17 11 12 6 7 11"></polyline>
|
||||
<polyline points="17 18 12 13 7 18"></polyline>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
<script>
|
||||
let menu = document.getElementById('menu');
|
||||
if (menu) {
|
||||
|
||||
const scrollPosition = localStorage.getItem("menu-scroll-position");
|
||||
if (scrollPosition) {
|
||||
menu.scrollLeft = parseInt(scrollPosition, 10);
|
||||
}
|
||||
|
||||
menu.onscroll = function () {
|
||||
localStorage.setItem("menu-scroll-position", menu.scrollLeft);
|
||||
}
|
||||
}
|
||||
|
||||
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
||||
anchor.addEventListener("click", function (e) {
|
||||
e.preventDefault();
|
||||
var id = this.getAttribute("href").substr(1);
|
||||
if (!window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
|
||||
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView({
|
||||
behavior: "smooth"
|
||||
});
|
||||
} else {
|
||||
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView();
|
||||
}
|
||||
if (id === "top") {
|
||||
history.replaceState(null, null, " ");
|
||||
} else {
|
||||
history.pushState(null, null, `#${id}`);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
<script>
|
||||
var toplink = document.getElementById("top-link");
|
||||
window.onscroll = function () {
|
||||
const scrollThreshold = window.innerHeight;
|
||||
if (document.body.scrollTop > scrollThreshold || document.documentElement.scrollTop > scrollThreshold) {
|
||||
toplink.classList.remove("hidden");
|
||||
} else {
|
||||
toplink.classList.add("hidden");
|
||||
}
|
||||
};
|
||||
|
||||
</script>
|
||||
<script>
|
||||
document.getElementById("theme-toggle").addEventListener("click", () => {
|
||||
const html = document.querySelector("html");
|
||||
if (html.dataset.theme === "dark") {
|
||||
html.dataset.theme = 'light';
|
||||
localStorage.setItem("pref-theme", 'light');
|
||||
} else {
|
||||
html.dataset.theme = 'dark';
|
||||
localStorage.setItem("pref-theme", 'dark');
|
||||
}
|
||||
})
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,57 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
||||
<channel>
|
||||
<title>Techno on TheWittyBanter.com</title>
|
||||
<link>//localhost:1313/tags/techno/</link>
|
||||
<description>Recent content in Techno on TheWittyBanter.com</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Mon, 03 Aug 2026 10:32:52 -0400</lastBuildDate>
|
||||
<atom:link href="//localhost:1313/tags/techno/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Originals</title>
|
||||
<link>//localhost:1313/music/techno/originals/</link>
|
||||
<pubDate>Mon, 03 Aug 2026 10:32:52 -0400</pubDate>
|
||||
<guid>//localhost:1313/music/techno/originals/</guid>
|
||||
<description><p>These are the wubs I made. I am capable of original thought (for the most part)!</p>
|
||||
<hr>
|
||||
<h3 id="meager">Meager</h3>
|
||||
<p>The first original EDM composition I completed on FL Studio Mobile. It created a monster.</p>
|
||||
<figure>
|
||||
<audio controls preload="metadata" style="width: 100%;">
|
||||
<source src="//localhost:1313/audio/techno/original/Meager.mp3" type="audio/mpeg">
|
||||
Your browser does not support the audio element.
|
||||
</audio>
|
||||
|
||||
</figure>
|
||||
|
||||
<hr>
|
||||
<h3 id="ladybugs">Ladybugs</h3>
|
||||
<p>Named after the abundance of not-ladybugs-but-beetles that invade the house every year.</p>
|
||||
<figure>
|
||||
<audio controls preload="metadata" style="width: 100%;">
|
||||
<source src="//localhost:1313/audio/techno/original/Ladybugs.mp3" type="audio/mpeg">
|
||||
Your browser does not support the audio element.
|
||||
</audio>
|
||||
|
||||
</figure>
|
||||
|
||||
<hr>
|
||||
<h3 id="massive">Massive</h3>
|
||||
<p>I like that song &ldquo;Teardrop&rdquo; by Massive Attack quite a bit, I wanted to make a Massive Attack song. Don&rsquo;t mind the weird aetherial videogame-choir in the middle.</p></description>
|
||||
</item>
|
||||
<item>
|
||||
<title>Remixes</title>
|
||||
<link>//localhost:1313/music/techno/remixes/</link>
|
||||
<pubDate>Mon, 03 Aug 2026 10:28:19 -0400</pubDate>
|
||||
<guid>//localhost:1313/music/techno/remixes/</guid>
|
||||
<description><p><strong>Some remixed tunes for your wubby pleasure</strong></p>
|
||||
<h1 id="remixes">Remixes</h1>
|
||||
<h3 id="chixnribz-lost">ChixNRibz (lost)</h3>
|
||||
<p>Unfortunately I can&rsquo;t find this one right off, but chronologically it&rsquo;s the first &ldquo;remix&rdquo; I did - Bridges and Rivers by The Chicken Street Band. What follows is a byproduct of that project, though.</p>
|
||||
<hr>
|
||||
<h3 id="number-one---tophouse">Number One - <a href="https://tidal.com/artist/8994731">Tophouse</a></h3>
|
||||
<p>Technically the second remix I did. A great nerdy folk group, no shortage of LotR love at their shows (complete with live readings of passages from The Hobbit). I could hear the remix in my head on the first listen, this is what followed.</p></description>
|
||||
</item>
|
||||
</channel>
|
||||
</rss>
|
||||
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>//localhost:1313/tags/techno/</title>
|
||||
<link rel="canonical" href="//localhost:1313/tags/techno/">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="refresh" content="0; url=//localhost:1313/tags/techno/">
|
||||
</head>
|
||||
</html>
|
||||
@@ -5,7 +5,7 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<title>Quick rundown on the brain dump | TheWittyBanter.com</title>
|
||||
<title>"Mission Statement" | TheWittyBanter.com</title>
|
||||
<meta name="keywords" content="">
|
||||
<meta name="description" content="
|
||||
|
||||
@@ -123,7 +123,7 @@ I’ve always hated the idea of being a “solo artist”, using my
|
||||
</svg>
|
||||
</nav>
|
||||
<h1>
|
||||
Quick rundown on the brain dump
|
||||
"Mission Statement"
|
||||
</h1>
|
||||
</header>
|
||||
<div class="post-content md-content"><img src="/images/portraitsilly.jpg"
|
||||
|
||||
@@ -1,12 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
||||
<channel>
|
||||
<title>Quick rundown on the brain dump on TheWittyBanter.com</title>
|
||||
<title>"Mission Statement" on TheWittyBanter.com</title>
|
||||
<link>//localhost:1313/welcome/</link>
|
||||
<description>Recent content in Quick rundown on the brain dump on TheWittyBanter.com</description>
|
||||
<description>Recent content in "Mission Statement" on TheWittyBanter.com</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>en</language>
|
||||
<lastBuildDate></lastBuildDate>
|
||||
<atom:link href="//localhost:1313/welcome/index.xml" rel="self" type="application/rss+xml" />
|
||||
</channel>
|
||||
</rss>
|
||||
|
||||
Reference in New Issue
Block a user