Skip to content

Commit

Permalink
add holding patterns, yah
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdeaner committed Mar 29, 2024
1 parent 5ad570a commit fe4703e
Show file tree
Hide file tree
Showing 11 changed files with 122 additions and 5 deletions.
6 changes: 4 additions & 2 deletions _layouts/store.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,16 @@ <h2>Store</h2>
{% assign products = site.posts | where: "tags", "product" %} {%-
for post in products -%}
<li>
<h3>
<h3 id="{{post.title | slugify }}">
<a class="post-link" href="{{ post.detail_page }}">
{{ post.title | escape }}
</a>
</h3>
<div class="container">
<div class="image">
<img src="{{post.image}}" />
<a href="{{post.image}}"
><img src="{{post.image}}"
/></a>
</div>
<div class="content-container">
<div class="content">{{ post.content }}</div>
Expand Down
47 changes: 47 additions & 0 deletions _posts/albums/2002-03-08-self-titled-long-playing-debut-album.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
---
layout: album
image_url: "/assets/img/stlpda.jpg"
title: "Self Titled Long Playing Debut Album (2002)"
date: 2002-03-08 20:30:54 -0500
tags: discography
permalink: /self-titled-long-playing-debut-album/
excerpt_separator: <!--more-->
---

<!--more-->

## Self titled Long Playing Debut Album

<div id="release-info">
Released March 8th, 2002 on <a href="https://www.teenbeatrecords.com/items/323.html">Teenbeat Records</a>
</div>

<div id="container">
<div id="artwork">
<a href="/assets/img/stlpda.jpg" alt="Full res version"><img src="/assets/img/stlpda.jpg"/></a>
<div id="buy-album-btn">
<div class="button-sm">
<a href="/store/#self-titled-long-playing-debut-album-cd">Buy It</a>
</div>
</div>
</div>
<div id="tracklist">
<h4>Track Listing</h4>
<ol>
<li>All I Do</li>
<li>Crestfallen</li>
<li>The Queen of Detroit</li>
<li>Beverley Road</li>
<li>Manifest Destiny (in general)</li>
<li>The Declaration of Independence</li>
<li>Setting Your Head on Fire</li>
<li>The Industrial Revolution</li>
<li>Yo Yo Yo (Please don't fall in love)</li>
<li>I Sleep Forever</li>
<li>All I Have to Do is Make You</li>
<li>Ill Advised</li>
<li>The Separation of Church and State</li>
<li>A Million Pieces on the Ground</li>
</ol>
</div>
</div>
38 changes: 38 additions & 0 deletions _posts/albums/2003-04-14-holding-patterns.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
layout: album
image_url: "/assets/img/hp.jpg"
title: "Holding Patterns (2003)"
date: 2003-04-14 20:30:54 -0500
tags: discography
permalink: /holding-patterns/
excerpt_separator: <!--more-->
---

<!--more-->

## Summer 2019 : Extended Play

<div id="release-info">
Released April 14th, 2003 on <a href="https://www.teenbeatrecords.com/items/343.html">Teenbeat Records</a>
</div>

<div id="container">
<div id="artwork">
<a href="/assets/img/hp.jpg" alt="Full res version"><img src="/assets/img/hp.jpg"/></a>
<div id="buy-album-btn">
<div class="button-sm">
<a href="/store/#holding-patterns">Buy It</a>
</div>
</div>
</div>
<div id="tracklist">
<h4>Track Listing</h4>
<ol>
<li>I've Been Lost</li>
<li>Trapped Under Ice Floes</li>
<li>Far Into the Fields</li>
<li>You've Just Got It All</li>
<li>Making the Horse Drink</li>
</ol>
</div>
</div>
2 changes: 1 addition & 1 deletion _posts/albums/2014-08-03-jumping-the-tracks.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ excerpt_separator: <!--more-->
<a href="/assets/img/jtt.jpg" alt="Full res version"><img src="/assets/img/jtt.jpg"/></a>
<div id="buy-album-btn">
<div class="button-sm">
<a href="/store/#jumping-the-tracks">Buy It</a>
<a href="/store/#jumping-the-tracks-vinyl">Buy It</a>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion _posts/albums/2024-04-01-further-afield-LP.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ excerpt_separator: <!--more-->
<a href="/assets/img/fa.jpg" alt="Full res version"><img src="/assets/img/fa.jpg"/></a>
<div id="buy-album-btn">
<div class="button-sm">
<a href="/store/#further-afield">Buy It</a>
<a href="/store/#further-afield-vinyl">Buy It</a>
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
layout: page
title: "Self Titled Long Playing Debut Album CD"
date: 2002-03-08 20:30:54 -0500
tags: product
detail_page: "/self-titled-long-playing-debut-album/"
image: "/assets/img/stlpda.jpg"
price: "10.00"
item_number: "014"
item_name: "Self Titled Long Playing Debut Album CD"
item_type: "CD"
others:
'Also available at <a
href="https://www.teenbeatrecords.com/items/323.html">Teenbeat</a> and <a
href="https://plusminusnyc.bandcamp.com/album/self-titled-long-playing-debut-album">Bandcamp</a>'
---
13 changes: 13 additions & 0 deletions _posts/store/2007-10-20-xs-on-your-eyes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
layout: page
title: "Xs on your Eyes Vinyl"
date: 2007-10-20 20:30:54 -0500
tags: product
detail_page: "/xs-on-your-eyes/"
image: "/assets/img/xoye.jpg"
price: "12.00"
item_number: 021
item_name: "Xs onyour Eyes Vinyl"
item_type: "Vinyl"
others: ""
---
1 change: 0 additions & 1 deletion _posts/store/2024-03-26-further-afield-vinyl.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ price: "18.88"
item_number: 021
item_name: "Further Afield Vinyl"
item_type: "Vinyl"
diabled: true
others:
'Also available at EJRC, <a
href="https://plusminusnyc.bandcamp.com/album/jumping-the-tracks">Bandcamp</a>,
Expand Down
Binary file added assets/img/xoye.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions pages/discography.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ layout: discography
title: Discography
permalink: /discography/
---

<div style="color:white">hamburbur.</div>

0 comments on commit fe4703e

Please sign in to comment.