Merge pull request #2 from makyo/hugo

hugo site
This commit is contained in:
Madison Scott-Clary
2019-03-06 00:33:20 -08:00
committed by GitHub
174 changed files with 1843 additions and 522 deletions

View File

@ -1,15 +0,0 @@
<!-- JS -->
<script src="{{site.baseurl}}/assets/js/jquery-3.2.1.min.js"></script>
<script src="{{site.baseurl}}/assets/js/jekyll-search.js"></script>
<script>
SimpleJekyllSearch({
searchInput: document.getElementById('search-input'),
resultsContainer: document.getElementById('results-container'),
json: '{{site.baseurl}}/search.json',
searchResultTemplate: '<li><a href="{url}" title="{desc}">{title}</a></li>',
noResultsText: 'No results found',
fuzzy: false,
exclude: ['Welcome']
});
</script>
<script src="{{site.baseurl}}/assets/js/main.js"></script>

View File

@ -1,61 +0,0 @@
---
layout: home-page
title: About
permalink: /about/
---
<div class="small-wrapper">
<div class="about-container">
<section class="about-header">
<div class="author-image-container">
<img src="{{site.baseurl}}/assets/img/{% if site.author-pic %}{{site.author-pic}}{% endif %}" alt="{{site.author}}">
</div>
<p class="subtitle">{{site.about-author}} A list of her publications is available <a href="{{site.baseurl}}/publications">here</a>.</p>
</section>
<section class="about-body">
<p>If you're interested in supporting my writing work (and development work, if that's your bag!), I will be eternally grateful! I have a few mechanisms for support:</p>
<ul>
<li><a href="https://patreon.com/makyo"><strong>Patreon</strong> - Patreon is a site that allows a patronage model for funding creators. In this incarnation, I have a few tiers: $1 patrons get access to posts; $5 patrons get early content; and $10 patrons get drafts, previews, and so on. Any level of support is appreciated!
<li><a href="https://liberapay.com/makyo/"><strong>LiberaPay</strong></a> — LiberaPay is a recurrent donations platform that allows supporting me and my writing on a monthly basis.</li>
<li><a href="https://ko-fi.com/drabmakyo"><strong>Ko-fi</strong></a> — Ko-fi is a tipping site, and is nicely integrated with PayPal.</li>
</ul>
<hr />
<ul class="contact-list">
{% if site.email %}
<li class="email"><a href="mailto:{{site.email}}"><i class="fa fa-envelope-o"></i></a></li>
{% endif %}
{% if site.phone %}
<li class="phone"><a href="tel:{{site.phone}}"><i class="fa fa-phone"></i></a></li>
{% endif %}
{% if site.website %}
<li class="website"><a href="http://{{site.website}}" target="_blank"><i class="fa fa-globe"></i></a></li>
{% endif %}
{% if site.linkedin %}
<li class="linkedin"><a href="https://in.linkedin.com/in/{{site.linkedin}}" target="_blank"><i class="fa fa-linkedin"></i></a></li>
{% endif %}
{% if site.github %}
<li class="github"><a href="http://github.com/{{site.github}}" target="_blank"><i class="fa fa-github"></i></a></li>
{% endif %}
{% if site.twitter %}
<li class="twitter"><a href="https://twitter.com/{{site.twitter}}" target="_blank"><i class="fa fa-twitter"></i></a></li>
{% endif %}
{% if site.facebook %}
<li class="facebook"><a href="https://facebook.com/{{site.facebook}}" target="_blank"><i class="fa fa-facebook"></i></a></li>
{% endif %}
{% if site.instagram %}
<li class="instagram"><a href="https://instagram.com/{{site.instagram}}" target="_blank"><i class="fa fa-instagram"></i></a></li>
{% endif %}
{% if site.pinterest %}
<li class="pinterest"><a href="https://pinterest.com/{{site.pinterest}}" target="_blank"><i class="fa fa-pinterest"></i></a></li>
{% endif %}
</ul>
</section> <!-- End About Body-->
</div> <!-- End About Container -->
</div> <!-- End Small Wrapper -->

View File

@ -1,30 +0,0 @@
---
layout: home-page
title: Tags
permalink: /tags/
---
{% capture site_tags %}{% for tag in site.tags %}{{ tag | first }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
{% assign tag_words = site_tags | split:',' | sort %}
<section class="blog-tags">
<h1>Tags</h1>
<ul class="tags">
<!-- cycles through tag list and creates header row of all tags used in site with accompanying per-tag counts...-->
{% for item in (0..site.tags.size) %}{% unless forloop.last %}
{% capture this_word %}{{ tag_words[item] | strip_newlines }}{% endcapture %}
<li ><a href="#{{ this_word | cgi_escape }}" class="tag">{{ this_word }} <span>({{ site.tags[this_word].size }})</span></a></li>
{% endunless %}{% endfor %}
</ul>
<!--cycles through tag list and creates subheader for each tag name...-->
{% for item in (0..site.tags.size) %}{% unless forloop.last %}
{% capture this_word %}{{ tag_words[item] | strip_newlines }}{% endcapture %}
<h2 id="{{ this_word | cgi_escape }}">{{ this_word }}</h2>
<!-- lists all posts corresponding to specific tag...-->
{% for post in site.tags[this_word] %}{% if post.title != null %}
<div class="tag-list">
<span><a href="{{ post.url }}">{{ post.title }}</a></span>
<small><span>| {{ post.date | date_to_string }}</span></small>
</div>
{% endif %}{% endfor %}
{% endunless %}{% endfor %}
</section>

6
archetypes/default.md Normal file
View File

@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

View File

@ -1,6 +1,3 @@
---
---
@import "variables"; @import "variables";
@import "syntax"; @import "syntax";
@import "tools/normalize"; @import "tools/normalize";

View File

@ -0,0 +1,35 @@
ul.pagination {
list-style-type: none;
display: inline-block;
margin: 1rem auto !important;
}
ul.pagination li {
display: inline-block;
border: 1px solid $light-gray;
min-width: 2rem;
text-align: center;
margin-right: -5px;
}
ul.pagination li:last-of-type {
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
}
ul.pagination li:first-of-type {
border-top-left-radius: 2px;
border-bottom-left-radius: 2px;
}
ul.pagination .page-item.disabled a {
color: #666;
border: none;
cursor: text;
}
ul.pagination .page-item.active a {
text-decoration: none;
border: none;
cursor: text;
}

View File

@ -1,27 +0,0 @@
.pagination {
margin-bottom: 30px;
.previous {
float: left;
}
.next {
float: right;
}
.previous, .next {
text-decoration: none;
text-transform: uppercase;
font-size: 14px;
color: $dark-gray;
&:hover {
opacity: .8;
color: $dark-pink;
}
.invert & {
color: $light-gray;
&:hover {
color: $light-pink;
}
}
}
}

12
config.toml Normal file
View File

@ -0,0 +1,12 @@
baseURL = "/"
languageCode = "en-us"
title = "The Writing of Madison Scott-Clary"
[taxonomies]
tag = "tags"
category = "categories"
rating = "ratings"
series = "series"
[permalinks]
post = "/:filename/"

8
content/_index.html Normal file
View File

@ -0,0 +1,8 @@
---
---
<p>Welcome to the written works of Madison Scott-Clary.</p>
<p>Madison is an author of fiction, non-fiction, and poetry living in Loveland, Colorado. Her interests lie in the realms of furry fiction and non-fiction, collaborative fiction, and hypertextual writing. She is a member of the Furry Writers' Guild, and editor for several projects, fiction and non-fiction. This site collects several of her written works.</p>
<p>This site comprises mostly completed written works. For drafts, in-progress words, and so on, head over to <a href="http://writing.drab-makyo.com">her blog and writing page</a></p>

33
content/about.html Normal file
View File

@ -0,0 +1,33 @@
---
layout: home-page
title: About
permalink: /about/
---
<div class="small-wrapper">
<div class="about-container">
<section class="about-header">
<div class="author-image-container">
<img src="/assets/img/headshot.jpg" alt="Madison Scott-Clary">
</div>
<p class="subtitle">Madison Scott-Clary is a full-time software developer and part-time writer. She lives with her two dogs and her husband, who is also a dog. A list of her publications is available <a href="{{site.baseurl}}/publications">here</a>.</p>
</section>
<section class="about-body">
<p>If you're interested in supporting my writing work (and development work, if that's your bag!), I will be eternally grateful! I have a few mechanisms for support:</p>
<ul>
<li><a href="https://patreon.com/makyo"><strong>Patreon</strong> - Patreon is a site that allows a patronage model for funding creators. In this incarnation, I have a few tiers: $1 patrons get access to posts; $5 patrons get early content; and $10 patrons get drafts, previews, and so on. Any level of support is appreciated!
<li><a href="https://liberapay.com/makyo/"><strong>LiberaPay</strong></a> — LiberaPay is a recurrent donations platform that allows supporting me and my writing on a monthly basis.</li>
<li><a href="https://ko-fi.com/drabmakyo"><strong>Ko-fi</strong></a> — Ko-fi is a tipping site, and is nicely integrated with PayPal.</li>
</ul>
<hr />
<ul class="contact-list">
<li class="email"><a href="mailto:makyo@drab-makyo.com"><i class="fa fa-envelope-o"></i></a></li>
<li class="website"><a href="http://drab-makyo.com" target="_blank"><i class="fa fa-globe"></i></a></li>
<li class="github"><a href="http://github.com/makyo" target="_blank"><i class="fa fa-github"></i></a></li>
<li class="twitter"><a href="https://twitter.com/makyo_writes" target="_blank"><i class="fa fa-twitter"></i></a></li>
</ul>
</section> <!-- End About Body-->
</div> <!-- End About Container -->
</div> <!-- End Small Wrapper -->

View File

@ -1,11 +1,5 @@
--- ---
counts: url: /assets/posts/youre-gone/script
characters_real: 23917
characters_total: 30125
file: ./fiction/sawtooth/youre-gone/script.md
paragraphs: 505
type: jekyll
words: 6193
layout: post layout: post
title: You're Gone title: You're Gone
--- ---

View File

@ -1,20 +1,14 @@
--- ---
author: Madison Scott-Clary author: Madison Scott-Clary
categories: categories:
- Sawtooth
- Short Story - Short Story
- Rated R series: Sawtooth
counts: ratings: R
characters_real: 69529 date: 2017-12-10
characters_total: 85747
file: _posts/2017-12-10-a-theory-of-attachment.md
paragraphs: 607
type: jekyll
words: 16131
description: "Living with obsessive-compulsive disorder is tough without a support\ description: "Living with obsessive-compulsive disorder is tough without a support\
\ network, so when S\xE9l\xE8ne's changes, stress runs high." \ network, so when S\xE9l\xE8ne's changes, stress runs high."
img: flag.svg img: flag.svg
layout: post type: post
pdf: a-theory-of-attachment.pdf pdf: a-theory-of-attachment.pdf
tags: tags:
- Furry - Furry

View File

@ -1,19 +1,13 @@
--- ---
author: Madison Scott-Clary author: Madison Scott-Clary
categories: categories:
- Sawtooth
- Vignette - Vignette
- Rated G series: Sawtooth
counts: ratings: G
characters_real: 4916 date: 2017-12-16
characters_total: 6040
file: _posts/2017-12-16-acts-of-intent.md
paragraphs: 33
type: jekyll
words: 1098
description: A coyote burns meaning into the world around him. description: A coyote burns meaning into the world around him.
img: flag.svg img: flag.svg
layout: post type: post
tags: tags:
- Furry - Furry
- Magic - Magic

View File

@ -1,19 +1,12 @@
--- ---
author: Madison Scott-Clary
categories: categories:
- Rum and Coke
- Short Story - Short Story
- Rated X series: Rum and Coke
counts: ratings: X
characters_real: 28467 date: 2015-09-03
characters_total: 35243
file: _posts/2015-09-03-again.md
paragraphs: 203
type: jekyll
words: 6539
description: Exes and transition make for a lot of change all at once. description: Exes and transition make for a lot of change all at once.
img: rum-and-coke.png img: rum-and-coke.png
layout: post type: post
pdf: rum-and-coke.pdf pdf: rum-and-coke.pdf
tags: tags:
- Furry - Furry

View File

@ -1,16 +1,9 @@
--- ---
categories: categories:
- Short Story - Short Story
- Rated G ratings: G
counts:
characters_real: 13617
characters_total: 16863
file: _posts/2004-04-21-all-of-time-at-once.md
paragraphs: 54
type: jekyll
words: 3217
date: 2004-04-21 date: 2004-04-21
layout: post type: post
tags: tags:
- Science fiction - Science fiction
- Time travel - Time travel

View File

@ -1,20 +1,12 @@
--- ---
author: Madison Scott-Clary
categories: categories:
- Post-Self
- Short Story - Short Story
- Rated G series: Post-Self
counts: ratings: G
characters_real: 7968 date: 2017-02-04
characters_total: 9729 description: A young woman reluctantly goes through with the uploading procedure, risky though it is, to reconnect with her lover.
file: _posts/2017-02-04-apres-un-reve.md
paragraphs: 82
type: jekyll
words: 1735
description: A young woman reluctantly goes through with the uploading procedure,
risky though it is, to reconnect with her lover.
img: post-self.png img: post-self.png
layout: post type: post
pdf: apres-un-reve.pdf pdf: apres-un-reve.pdf
tags: tags:
- Death - Death

View File

@ -1,20 +1,13 @@
--- ---
author: Madison Scott-Clary author: Madison Scott-Clary
categories: categories:
- Post-Self
- Short Story - Short Story
- Rated G series: Post-Self
counts: ratings: G
characters_real: 6871 date: 2016-12-26
characters_total: 8421 description: Ioan Balan is a historian and blogger assigned to research a flash-cult. Things go sideways, and he's left with more story than expected.
file: _posts/2016-12-26-assignment.md
paragraphs: 56
type: jekyll
words: 1512
description: Ioan Balan is a historian and blogger assigned to research a flash-cult.
Things go sideways, and he's left with more story than expected.
img: post-self.png img: post-self.png
layout: post type: post
pdf: assignment.pdf pdf: assignment.pdf
tags: tags:
- Science fiction - Science fiction

View File

@ -2,17 +2,10 @@
author: Madison Scott-Clary author: Madison Scott-Clary
categories: categories:
- Short Story - Short Story
- Rated X ratings: X
counts: description: A date turns into much, much more as a wolf takes everything from a cat, from words to memories.
characters_real: 7802 date: 2018-01-22
characters_total: 9785 type: post
file: _posts/2018-01-22-at-his-whim.md
paragraphs: 89
type: jekyll
words: 1941
description: A date turns into much, much more as a wolf takes everything from a cat,
from words to memories.
layout: post
pdf: at-his-whim.pdf pdf: at-his-whim.pdf
tags: tags:
- Furry - Furry

View File

@ -1,15 +1,9 @@
--- ---
category: category:
- Poem - Poem
- Rated G ratings: G
counts: date: 2018-01-31
characters_real: 537 type: post
characters_total: 671
file: _posts/2018-01-31-beneath-her-coat.md
paragraphs: 5
type: jekyll
words: 130
layout: post
tags: tags:
- Poetry - Poetry
- Furry - Furry

View File

@ -1,17 +1,10 @@
--- ---
counts:
characters_real: 150
characters_total: 196
file: ./poetry/bruise-vision/index.md
paragraphs: 2
type: jekyll
words: 31
date: 2017-06-03 date: 2017-06-03
layout: post type: post
title: Bruise Vision title: Bruise Vision
categories: categories:
- Poem - Poem
- Rated G ratings: G
tags: tags:
- Poetry - Poetry
- Mental Health - Mental Health

View File

@ -1,19 +1,11 @@
--- ---
author: Madison Scott-Clary
categories: categories:
- Sawtooth
- Short Story - Short Story
- Rated X series: Sawtooth
counts: ratings: X
characters_real: 18804
characters_total: 23200
file: _posts/2016-12-17-centerpiece.md
paragraphs: 118
type: jekyll
words: 4366
date: 2016-12-17 date: 2016-12-17
img: flag.svg img: flag.svg
layout: post type: post
pdf: centerpiece.pdf pdf: centerpiece.pdf
rating: X rating: X
tags: tags:

View File

@ -1,20 +1,13 @@
--- ---
author: Madison Scott-Clary
categories: categories:
- Sawtooth
- Short Story - Short Story
- Rated R series: Sawtooth
counts: ratings: R
characters_real: 50378 description: A weasel attempts to escape from her life in Sawtooth to Oregon, but finds her old life still tied to home.
characters_total: 62750 date: 2018-08-14
file: _posts/2018-08-14-disappearance.md draft: true
paragraphs: 416
type: jekyll
words: 12341
description: A weasel attempts to escape from her life in Sawtooth to Oregon, but
finds her old life still tied to home.
img: alley-cat.jpg img: alley-cat.jpg
layout: post type: post
pdf: disappearance.pdf pdf: disappearance.pdf
tags: tags:
- Furry - Furry

View File

@ -1,16 +1,9 @@
--- ---
categories: categories:
- Poem - Poem
- Rated G ratings: Rated G
counts:
characters_real: 393
characters_total: 548
file: _posts/2017-08-14-every-time-i-fall.md
paragraphs: 5
type: jekyll
words: 100
date: 2017-08-14 date: 2017-08-14
layout: post type: post
tags: tags:
- Poetry - Poetry
title: Every time I fall title: Every time I fall

View File

@ -1,16 +1,9 @@
--- ---
categories: categories:
- Poem - Poem
- Rated G ratings: Rated G
counts:
characters_real: 572
characters_total: 722
file: _posts/2018-07-08-fair-and-square.md
paragraphs: 2
type: jekyll
words: 126
date: 2018-07-08 date: 2018-07-08
layout: post type: post
tags: tags:
- Poetry - Poetry
- Gender - Gender

View File

@ -1,20 +1,13 @@
--- ---
author: Madison Scott-Clary
categories: categories:
- Post-Self
- Short Story - Short Story
- Interactive - Interactive
- Rated G series: Post-Self
counts: ratings: G
characters_real: 627 date: 2017-01-03
characters_total: 765
file: _posts/2017-01-03-gallery-exhibition.md
paragraphs: 5
type: jekyll
words: 139
description: null description: null
img: gallery-exhibition.svg img: gallery-exhibition.svg
layout: post type: post
tags: tags:
- Romance - Romance
- Science fiction - Science fiction

View File

@ -1,16 +1,9 @@
--- ---
categories: categories:
- Non-fiction - Non-fiction
- Rated G ratings: G
counts:
characters_real: 23567
characters_total: 28865
file: _posts/2016-12-04-gender-furry.md
paragraphs: 89
type: jekyll
words: 5238
date: 2016-12-04 date: 2016-12-04
layout: post type: post
pdf: gender-furry.pdf pdf: gender-furry.pdf
tags: tags:
- Furry - Furry

View File

@ -1,20 +1,11 @@
--- ---
author: Madison Scott-Clary
categories: categories:
- Poem - Poem
- Rated G ratings: G
counts: description: A longer piece to go with this lovely painting by Julian Norwood (https://www.patreon.com/Cadmiumtea), which I commissioned for the end of an era. The image of transformation is from a recurring dream.
characters_real: 3818
characters_total: 4742
file: _posts/2018-06-01-growth.md
paragraphs: 28
type: jekyll
words: 894
description: A longer piece to go with this lovely painting by Julian Norwood (https://www.patreon.com/Cadmiumtea),
which I commissioned for the end of an era. The image of transformation is from
a recurring dream.
img: growth-header.jpg img: growth-header.jpg
layout: post type: post
date: 2018-07-01
tags: tags:
- Poetry - Poetry
- Gender - Gender

View File

@ -1,16 +1,9 @@
--- ---
categories: categories:
- Poem - Poem
- Rated G ratings: G
counts:
characters_real: 413
characters_total: 514
file: _posts/2017-02-20-heligoland.md
paragraphs: 6
type: jekyll
words: 97
date: 2017-02-20 date: 2017-02-20
layout: post type: post
tags: tags:
- Poetry - Poetry
title: Heligoland title: Heligoland

View File

@ -1,20 +1,12 @@
--- ---
author: Madison Scott-Clary
categories: categories:
- Rum and Coke
- Short Story - Short Story
- Rated X series: Rum and Coke
counts: ratings: X
characters_real: 37824 date: 2015-09-02
characters_total: 46662 description: 'Navigating poly is an ongoing process demarcated. Chief among them: first meetings.'
file: _posts/2015-09-02-how-many.md
paragraphs: 243
type: jekyll
words: 8779
description: 'Navigating poly is an ongoing process demarcated. Chief among them:
first meetings.'
img: rum-and-coke.png img: rum-and-coke.png
layout: post type: post
pdf: rum-and-coke.pdf pdf: rum-and-coke.pdf
tags: tags:
- Furry - Furry

View File

@ -1,16 +1,9 @@
--- ---
categories: categories:
- Poem - Poem
- Rated G ratings: G
counts:
characters_real: 928
characters_total: 1220
file: _posts/2017-02-12-meaning-and-self.md
paragraphs: 7
type: jekyll
words: 226
date: 2017-02-12 date: 2017-02-12
layout: post type: post
tags: tags:
- Poetry - Poetry
- Family - Family

View File

@ -1,19 +1,13 @@
--- ---
author: Madison Scott-Clary author: Madison Scott-Clary
categories: categories:
- Sawtooth
- Flash fiction - Flash fiction
- Rated G series: Sawtooth
counts: ratings: G
characters_real: 1495 date: 2017-11-29
characters_total: 1856
file: _posts/2017-11-29-mind-your-manners.md
paragraphs: 11
type: jekyll
words: 357
description: '[one big awful Canadian joke]' description: '[one big awful Canadian joke]'
img: flag.svg img: flag.svg
layout: post type: post
tags: tags:
- Furry - Furry
- Humor - Humor

View File

@ -1,16 +1,10 @@
--- ---
categories: categories:
- Short Story - Short Story
- Rated G
- Epistolary - Epistolary
counts: ratings: G
characters_real: 11418 date: 2016-08-30
characters_total: 14383 type: post
file: _posts/2016-08-30-missives.md
paragraphs: 93
type: jekyll
words: 2800
layout: post
pdf: missives.pdf pdf: missives.pdf
tags: tags:
- Furry - Furry

View File

@ -1,17 +1,10 @@
--- ---
categories: categories:
- Non-fiction - Non-fiction
- Rated PG ratings: PG
counts:
characters_real: 37956
characters_total: 46508
file: _posts/2016-04-01-new-american-absinthe.md
paragraphs: 173
type: jekyll
words: 8148
date: 2016-04-01 date: 2016-04-01
img: naa-all.jpg img: naa-all.jpg
layout: post type: post
pdf: new-american-absinthe.pdf pdf: new-american-absinthe.pdf
tags: tags:
- Alcohol - Alcohol

View File

@ -1,20 +1,12 @@
--- ---
author: Madison Scott-Clary
categories: categories:
- Sawtooth
- Short Story - Short Story
- Rated R series: Sawtooth
counts: ratings: R
characters_real: 59992 date: 2017-09-03
characters_total: 74277 description: A chronically neat otter's life is thrown into disarray when she takes a homeless ringtail in from the cold.
file: _posts/2017-09-03-overclassification.md
paragraphs: 513
type: jekyll
words: 14166
description: A chronically neat otter's life is thrown into disarray when she takes
a homeless ringtail in from the cold.
img: overclassification.jpg img: overclassification.jpg
layout: post type: post
pdf: overclassification.pdf pdf: overclassification.pdf
tags: tags:
- Furry - Furry

View File

@ -1,15 +1,9 @@
--- ---
categories: categories:
- Poem - Poem
- Rated G ratings: G
counts: date: 2017-02-12
characters_real: 1832 type: post
characters_total: 2431
file: _posts/2017-02-12-poems-from-missives.md
paragraphs: 15
type: jekyll
words: 440
layout: post
tags: tags:
- Poetry - Poetry
- Romanticism - Romanticism

View File

@ -1,15 +1,9 @@
--- ---
category: category:
- Poem - Poem
- Rated G ratings: G
counts: date: 2018-05-20
characters_real: 2514 post: post
characters_total: 3302
file: _posts/2018-05-20-post-op-images.md
paragraphs: 25
type: jekyll
words: 603
layout: post
tags: tags:
- Poetry - Poetry
- Gender - Gender

View File

@ -1,24 +1,13 @@
--- ---
author: Madison Scott-Clary
categories: categories:
- Post-Self
- Short Story - Short Story
- ARG - ARG
- Rated G series: Post-Self
counts: ratings: G
characters_real: 59486 date: 2017-01-26
characters_total: 72902 description: Qoheleth is the story behind and the goal of an Alternate Reality Game, or ARG, which took place in January, 2017, as part of Post-Self. As the readers worked through the ARG, more parts of the story were revealed, until all five were together. The full story is placed here, and further information about the game itself is included as an introduction.
file: _posts/2017-01-26-qoheleth.md
paragraphs: 522
type: jekyll
words: 13236
description: Qoheleth is the story behind and the goal of an Alternate Reality Game,
or ARG, which took place in January, 2017, as part of Post-Self. As the readers
worked through the ARG, more parts of the story were revealed, until all five
were together. The full story is placed here, and further information about the
game itself is included as an introduction.
img: qoheleth.jpg img: qoheleth.jpg
layout: post type: post
tags: tags:
- Science fiction - Science fiction
- Mystery - Mystery

View File

@ -1,15 +1,9 @@
--- ---
category: category:
- Poem - Poem
- Rated G ratings: G
counts: date: 2018-04-01
characters_real: 776 type: post
characters_total: 1119
file: _posts/2018-04-01-somehow-shes-me.md
paragraphs: 5
type: jekyll
words: 184
layout: post
tags: tags:
- Gender - Gender
- Poetry - Poetry

View File

@ -2,16 +2,11 @@
author: Madison Scott-Clary author: Madison Scott-Clary
categories: categories:
- Flash fiction - Flash fiction
- Rated G series: Sawtooth
counts: ratings: G
characters_real: 902 date: 2017-02-11
characters_total: 1117
file: _posts/2017-02-11-sorting-laundry.md
paragraphs: 9
type: jekyll
words: 216
description: You always have to sort your laundry. description: You always have to sort your laundry.
layout: post type: post
tags: tags:
- Gender - Gender
- Family - Family

View File

@ -1,16 +1,9 @@
--- ---
categories: categories:
- Poem - Poem
- Rated G ratings: G
counts:
characters_real: 316
characters_total: 398
file: _posts/2015-03-05-the-dogs-assure-me.md
paragraphs: 4
type: jekyll
words: 75
date: 2015-03-06 date: 2015-03-06
layout: post type: post
tags: tags:
- Animals - Animals
- Poetry - Poetry

View File

@ -1,20 +1,12 @@
--- ---
author: Madison Scott-Clary
categories: categories:
- Sawtooth
- Short Story - Short Story
- Rated G series: Sawtooth
counts: ratings: G
characters_real: 16414 date: 2017-05-08
characters_total: 20452 description: A student and a motherly badger explore questions of identity through a tarot reading.
file: _posts/2017-05-08-the-fool.md
paragraphs: 168
type: jekyll
words: 3988
description: A student and a motherly badger explore questions of identity through
a tarot reading.
img: the-fool.png img: the-fool.png
layout: post type: post
pdf: the-fool.pdf pdf: the-fool.pdf
tags: tags:
- Furry - Furry

View File

@ -1,15 +1,9 @@
--- ---
category: category:
- Poem - Poem
- Rated G ratings: G
counts: date: 2016-05-04
characters_real: 431 type: post
characters_total: 556
file: _posts/2016-05-04-there-is-too-much-fire-in-me.md
paragraphs: 3
type: jekyll
words: 103
layout: post
tags: tags:
- Mental Health - Mental Health
- Poetry - Poetry

View File

@ -1,20 +1,12 @@
--- ---
author: Madison Scott-Clary
categories: categories:
- Rum and Coke
- Short Story - Short Story
- Rated X series: Rum and Coke
counts: ratings: X
characters_real: 40294 date: 2015-09-01
characters_total: 49562 description: Meeting for the first time is stressful enough, but all the more so when things don't match up with what you expected.
file: _posts/2015-09-01-what-i-expected.md
paragraphs: 267
type: jekyll
words: 9153
description: Meeting for the first time is stressful enough, but all the more so when
things don't match up with what you expected.
img: rum-and-coke.png img: rum-and-coke.png
layout: post type: post
pdf: rum-and-coke.pdf pdf: rum-and-coke.pdf
tags: tags:
- Furry - Furry

View File

@ -1,20 +1,12 @@
--- ---
author: Madison Scott-Clary
categories: categories:
- Sawtooth
- Short Story - Short Story
- Rated X series: Sawtooth
counts: ratings: X
characters_real: 12013 date: 2017-01-30
characters_total: 14822 description: A cat heads to a party. What's usually a safe and comfortable group of friends is slowly dominated by a dog. A dog with plans.
file: _posts/2017-01-30-what-remains-of-yourself.md
paragraphs: 109
type: jekyll
words: 2797
description: A cat heads to a party. What's usually a safe and comfortable group of
friends is slowly dominated by a dog. A dog with plans.
img: flag.svg img: flag.svg
layout: post type: post
pdf: what-remains-of-yourself.pdf pdf: what-remains-of-yourself.pdf
tags: tags:
- Furry - Furry

View File

@ -1,16 +1,9 @@
--- ---
category: category:
- Poem - Poem
- Rated G ratings: G
counts:
characters_real: 526
characters_total: 671
file: _posts/2016-11-14-when-i-fall-i-will-remain-whole.md
paragraphs: 5
type: jekyll
words: 118
date: 2016-11-14 date: 2016-11-14
layout: post type: post
tags: tags:
- Poetry - Poetry
title: When I fall, I will remain whole title: When I fall, I will remain whole

View File

@ -1,15 +1,9 @@
--- ---
categories: categories:
- Flash fiction - Flash fiction
- Rated G ratings: G
counts: date: 2017-11-29
characters_real: 1742 type: post
characters_total: 2172
file: _posts/2017-11-29-where-the-dust-comes-from.md
paragraphs: 16
type: jekyll
words: 426
layout: post
tags: tags:
- Family - Family
title: Where the Dust Comes From title: Where the Dust Comes From

View File

@ -1,20 +1,13 @@
--- ---
author: Madison Scott-Clary
categories: categories:
- Short Story - Short Story
- Interactive - Interactive
- Sawtooth series: Sawtooth
- Rated G ratings: G
counts: date: 2018-01-26
characters_real: 318
characters_total: 405
file: _posts/2018-01-26-youre-gone.md
paragraphs: 8
type: jekyll
words: 73
description: An exploration in grief, told through instant messages to the dead. description: An exploration in grief, told through instant messages to the dead.
img: flag.svg img: flag.svg
layout: post type: post
tags: tags:
- Furry - Furry
- Death - Death

View File

Some files were not shown because too many files have changed in this diff Show More