Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ GEM
em-websocket (0.5.1)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0.6.0)
eventmachine (1.2.5-x64-mingw32)
ffi (1.9.23-x64-mingw32)
eventmachine (1.2.7-x64-mingw32)
ffi (1.9.25-x64-mingw32)
forwardable-extended (2.6.0)
http_parser.rb (0.6.0)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
jekyll (3.7.3)
jekyll (3.7.4)
addressable (~> 2.4)
colorator (~> 1.0)
em-websocket (~> 0.5)
Expand All @@ -27,43 +27,43 @@ GEM
pathutil (~> 0.9)
rouge (>= 1.7, < 4)
safe_yaml (~> 1.0)
jekyll-feed (0.9.3)
jekyll-feed (0.11.0)
jekyll (~> 3.3)
jekyll-sass-converter (1.5.2)
sass (~> 3.4)
jekyll-seo-tag (2.4.0)
jekyll-seo-tag (2.5.0)
jekyll (~> 3.3)
jekyll-watch (2.0.0)
jekyll-watch (2.1.2)
listen (~> 3.0)
kramdown (1.16.2)
liquid (4.0.0)
kramdown (1.17.0)
liquid (4.0.1)
listen (3.1.5)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
ruby_dep (~> 1.2)
mercenary (0.3.6)
minima (2.4.1)
minima (2.5.0)
jekyll (~> 3.5)
jekyll-feed (~> 0.9)
jekyll-seo-tag (~> 2.1)
pathutil (0.16.1)
forwardable-extended (~> 2.6)
public_suffix (3.0.2)
public_suffix (3.0.3)
rb-fsevent (0.10.3)
rb-inotify (0.9.10)
ffi (>= 0.5.0, < 2)
rouge (3.1.1)
rouge (3.3.0)
ruby_dep (1.5.0)
safe_yaml (1.0.4)
sass (3.5.6)
sass (3.6.0)
sass-listen (~> 4.0.0)
sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
thread_safe (0.3.6)
tzinfo (1.2.5)
thread_safe (~> 0.1)
tzinfo-data (1.2018.4)
tzinfo-data (1.2018.6)
tzinfo (>= 1.0.0)
wdm (0.1.1)

Expand All @@ -78,4 +78,4 @@ DEPENDENCIES
wdm (~> 0.1.0)

BUNDLED WITH
1.16.1
1.16.2
17 changes: 16 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,28 @@
markdown: kramdown
exclude:
- .idea
- node_modules
include:
- _pages
- _posts
plugins:
- jekyll-feed

collections_dir: collections
collections:
artists:
output: true
permalink: /artists/:slug
events:
output: false

defaults:
- scope:
path: ""
type: channels
values:
layout: channel


sass:
load_paths:
- _sass
Expand Down
12 changes: 12 additions & 0 deletions _includes/artist.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<div class="artist col-md-2">
{% if artist.image %}
<img src="{{ artist.image }}" />
{% endif %}
<div class="name">{{ artist.name }}</div>
{% if artist.links.furaffinity %}
<a class="icon icon-furaffinity" target="_blank" href="https://www.furaffinity.com/{{ artist.links.furaffinity }}"></a>
{% endif %}
{% if artist.links.twitter %}
<a class="icon icon-twitter" target="_blank" href="https://twitter.com/{{ artist.links.twitter }}"></a>
{% endif %}
</div>
12 changes: 12 additions & 0 deletions _includes/event.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<div class="event">
<h4>{{ event.name }}</h4>
<div class="date">Date: {{ event.date | date_to_long_string }}</div>
<div class="time">Time: {{ event.time }}</div>
{% if event.location %}
<div class="location">Location: {{ event.location }}</div>
{% endif %}
{% if event.address %}
<div class="address">Address: {{ event.address }}</div>
{% endif %}
<p class="about">{{ event.about }}</p>
</div>
20 changes: 20 additions & 0 deletions _includes/header.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">Chattawooga</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>

<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/artists/">Artists</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/events/">Events</a>
</li>
</ul>
</div>
</nav>
5 changes: 5 additions & 0 deletions _pages/anthrosoutheast.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
layout: default
title: Anthro South East
permalink: /anthro-south-east/
---
12 changes: 12 additions & 0 deletions _pages/artists.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
layout: default
title: Artists
permalink: /artists/
---

<div class="flex-row">
{% assign artists = site.artists | sort: 'name' %}
{% for artist in artists %}
{% include artist.html %}
{% endfor %}
</div>
12 changes: 12 additions & 0 deletions _pages/events.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
layout: default
title: Events
permalink: /events/
---

<div class="flex-row">
{% assign events = site.events | sort: 'date' %}
{% for event in events %}
{% include event.html %}
{% endfor %}
</div>
29 changes: 29 additions & 0 deletions _sass/_artists.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
.artist {
background-color: #ccc;
margin: 1em 10%;
padding: .25em .5em;

img {
width: 100%;
}

.name {
font-weight: bold;
text-align: center;
}

.icon {
background-position: center center;
background-repeat: no-repeat;
display: inline-block;
height: 30px;
width: 30px;

&.icon-furaffinity {
background-image: url("/images/icons/furaffinity.svg");
}
&.icon-twitter {
background-image: url("/images/icons/twitter.svg");
}
}
}
11 changes: 11 additions & 0 deletions _sass/_events.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.event {
background-color: #ccc;
margin: 1em 10%;
padding: .25em .5em;
width: 80%;

.date,
.time {
font-size: .9em;
}
}
8 changes: 8 additions & 0 deletions collections/_artists/theredghost.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
name: TheRedGhost
slug: theredghost

links:
furaffinity: theredghost
twitter: theredghostart
---
6 changes: 6 additions & 0 deletions collections/_events/boo-at-the-zoo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
name: Boo at the Zoo
date: 2018-10-27
time: 5pm - 8:30pm
about: Admission is free just tell them you are with Chattoonie, The Education Center in the back of the Zoo is where we can store things and suit up at etc. I will be arriving early to help those who are coming. Fursuiting is allowed. All is welcome!
---
2 changes: 2 additions & 0 deletions css/default.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
---

@import "bootstrap/scss/bootstrap";
@import "artists";
@import "events";

@charset "utf-8";

Expand Down
26 changes: 26 additions & 0 deletions images/icons/furaffinity.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/icons/twitter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.