Skip to content

Commit

Permalink
Add ALE:C show info. Add 'event' to shows.json. Update view and .edit…
Browse files Browse the repository at this point in the history
…orconfig settings.
  • Loading branch information
jgarber623 committed Dec 29, 2016
1 parent dc96a92 commit 6f04612
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 5 deletions.
1 change: 0 additions & 1 deletion .editorconfig
Expand Up @@ -10,6 +10,5 @@ indent_style = space
trim_trailing_whitespace = true

[*.{html,js,json,md,scss,svg}]
insert_final_newline = false
indent_size = 4
indent_style = tab
75 changes: 73 additions & 2 deletions src/_data/shows.json
Expand Up @@ -39,7 +39,7 @@
},
{
"date": "2009-06-24",
"venue": "Artomatic",
"event": "Artomatic",
"location": {
"locality": "Washington",
"region": "DC"
Expand Down Expand Up @@ -490,6 +490,7 @@
},
{
"date": "2017-01-21",
"event": "Capital Fringe",
"venue": "Logan Fringe Arts Space",
"location": {
"locality": "Washington",
Expand All @@ -502,5 +503,75 @@
"url": "https://californiaaccent.bandcamp.com/"
}
]
},
{
"date": "2017-02-18",
"event": "Auditory Learning Experience : Cinematic",
"location": {
"locality": "Williamsport",
"region": "MD"
},
"url": "https://www.facebook.com/events/701877223309457/",
"bands": [
{
"name": "Asucré",
"url": "https://asucre.bandcamp.com/"
},
{
"name": "evolv",
"url": "https://evolv.bandcamp.com/"
},
{
"name": "BLK TAG",
"url": "http://blk_tag.adams-dress.com/"
},
{
"name": "smallhands",
"url": "https://smallhandsva.bandcamp.com/"
},
{
"name": "Dan Miñoza",
"url": "https://www.facebook.com/minozadan"
},
{
"name": "INSECT FACTORY",
"url": "https://insectfactory.bandcamp.com/"
},
{
"name": "James Wolf",
"url": "https://jwolf333.bandcamp.com/"
},
{
"name": "onewayness",
"url": "https://www.onewayness.com/"
},
{
"name": "Christopher Feltner",
"url": "https://christophersfeltner.bandcamp.com/"
},
{
"name": "Brendan Cooper (p.zorito)",
"url": "https://pzorito.bandcamp.com/"
},
{
"name": "Jason Shawn (dRed)",
"url": "https://dred.bandcamp.com/"
},
{
"name": "David Kresge (Goodnight Stars, Goodnight Air)",
"url": "https://www.facebook.com/davidkresge"
},
{
"name": "SPT",
"url": "https://www.facebook.com/seenplattetunnel"
},
{
"name": "Phoenix Auto Group"
},
{
"name": "Paul Cogle (PSC3)",
"url": "https://www.facebook.com/paul.cogle"
}
]
}
]
]
9 changes: 7 additions & 2 deletions src/shows/index.html
Expand Up @@ -20,7 +20,12 @@ <h2 class="p-name">
</h2>

<p class="p-location h-card">
<span class="p-name">{{ show.venue }}</span>,
{% if show.event | length %}
{{ show.event }},
{% endif %}
{% if show.venue | length %}
<span class="p-name">{{ show.venue }}</span>,
{% endif %}
<span class="p-locality">{{ show.location.locality }}</span>,
<span class="p-region">{{ show.location.region }}</span>
</p>
Expand All @@ -41,4 +46,4 @@ <h2 class="p-name">
</div>
</li>
{% endfor %}
</ol>
</ol>

0 comments on commit 6f04612

Please sign in to comment.