hugo site
This commit is contained in:
@ -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>
|
||||
@ -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 -->
|
||||
@ -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
6
archetypes/default.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
---
|
||||
|
||||
@ -1,6 +1,3 @@
|
||||
---
|
||||
---
|
||||
|
||||
@import "variables";
|
||||
@import "syntax";
|
||||
@import "tools/normalize";
|
||||
|
||||
35
assets/css/parts/_pagination.scss
Normal file
35
assets/css/parts/_pagination.scss
Normal 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;
|
||||
}
|
||||
@ -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
12
config.toml
Normal 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
8
content/_index.html
Normal 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
33
content/about.html
Normal 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 -->
|
||||
@ -1,11 +1,5 @@
|
||||
---
|
||||
counts:
|
||||
characters_real: 23917
|
||||
characters_total: 30125
|
||||
file: ./fiction/sawtooth/youre-gone/script.md
|
||||
paragraphs: 505
|
||||
type: jekyll
|
||||
words: 6193
|
||||
url: /assets/posts/youre-gone/script
|
||||
layout: post
|
||||
title: You're Gone
|
||||
---
|
||||
@ -1,20 +1,14 @@
|
||||
---
|
||||
author: Madison Scott-Clary
|
||||
categories:
|
||||
- Sawtooth
|
||||
- Short Story
|
||||
- Rated R
|
||||
counts:
|
||||
characters_real: 69529
|
||||
characters_total: 85747
|
||||
file: _posts/2017-12-10-a-theory-of-attachment.md
|
||||
paragraphs: 607
|
||||
type: jekyll
|
||||
words: 16131
|
||||
series: Sawtooth
|
||||
ratings: R
|
||||
date: 2017-12-10
|
||||
description: "Living with obsessive-compulsive disorder is tough without a support\
|
||||
\ network, so when S\xE9l\xE8ne's changes, stress runs high."
|
||||
img: flag.svg
|
||||
layout: post
|
||||
type: post
|
||||
pdf: a-theory-of-attachment.pdf
|
||||
tags:
|
||||
- Furry
|
||||
@ -1,19 +1,13 @@
|
||||
---
|
||||
author: Madison Scott-Clary
|
||||
categories:
|
||||
- Sawtooth
|
||||
- Vignette
|
||||
- Rated G
|
||||
counts:
|
||||
characters_real: 4916
|
||||
characters_total: 6040
|
||||
file: _posts/2017-12-16-acts-of-intent.md
|
||||
paragraphs: 33
|
||||
type: jekyll
|
||||
words: 1098
|
||||
series: Sawtooth
|
||||
ratings: G
|
||||
date: 2017-12-16
|
||||
description: A coyote burns meaning into the world around him.
|
||||
img: flag.svg
|
||||
layout: post
|
||||
type: post
|
||||
tags:
|
||||
- Furry
|
||||
- Magic
|
||||
@ -1,19 +1,12 @@
|
||||
---
|
||||
author: Madison Scott-Clary
|
||||
categories:
|
||||
- Rum and Coke
|
||||
- Short Story
|
||||
- Rated X
|
||||
counts:
|
||||
characters_real: 28467
|
||||
characters_total: 35243
|
||||
file: _posts/2015-09-03-again.md
|
||||
paragraphs: 203
|
||||
type: jekyll
|
||||
words: 6539
|
||||
series: Rum and Coke
|
||||
ratings: X
|
||||
date: 2015-09-03
|
||||
description: Exes and transition make for a lot of change all at once.
|
||||
img: rum-and-coke.png
|
||||
layout: post
|
||||
type: post
|
||||
pdf: rum-and-coke.pdf
|
||||
tags:
|
||||
- Furry
|
||||
@ -1,16 +1,9 @@
|
||||
---
|
||||
categories:
|
||||
- Short Story
|
||||
- Rated 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
|
||||
ratings: G
|
||||
date: 2004-04-21
|
||||
layout: post
|
||||
type: post
|
||||
tags:
|
||||
- Science fiction
|
||||
- Time travel
|
||||
@ -1,20 +1,12 @@
|
||||
---
|
||||
author: Madison Scott-Clary
|
||||
categories:
|
||||
- Post-Self
|
||||
- Short Story
|
||||
- Rated G
|
||||
counts:
|
||||
characters_real: 7968
|
||||
characters_total: 9729
|
||||
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.
|
||||
series: Post-Self
|
||||
ratings: G
|
||||
date: 2017-02-04
|
||||
description: A young woman reluctantly goes through with the uploading procedure, risky though it is, to reconnect with her lover.
|
||||
img: post-self.png
|
||||
layout: post
|
||||
type: post
|
||||
pdf: apres-un-reve.pdf
|
||||
tags:
|
||||
- Death
|
||||
@ -1,20 +1,13 @@
|
||||
---
|
||||
author: Madison Scott-Clary
|
||||
categories:
|
||||
- Post-Self
|
||||
- Short Story
|
||||
- Rated G
|
||||
counts:
|
||||
characters_real: 6871
|
||||
characters_total: 8421
|
||||
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.
|
||||
series: Post-Self
|
||||
ratings: G
|
||||
date: 2016-12-26
|
||||
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
|
||||
layout: post
|
||||
type: post
|
||||
pdf: assignment.pdf
|
||||
tags:
|
||||
- Science fiction
|
||||
@ -2,17 +2,10 @@
|
||||
author: Madison Scott-Clary
|
||||
categories:
|
||||
- Short Story
|
||||
- Rated X
|
||||
counts:
|
||||
characters_real: 7802
|
||||
characters_total: 9785
|
||||
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
|
||||
ratings: X
|
||||
description: A date turns into much, much more as a wolf takes everything from a cat, from words to memories.
|
||||
date: 2018-01-22
|
||||
type: post
|
||||
pdf: at-his-whim.pdf
|
||||
tags:
|
||||
- Furry
|
||||
@ -1,15 +1,9 @@
|
||||
---
|
||||
category:
|
||||
- Poem
|
||||
- Rated G
|
||||
counts:
|
||||
characters_real: 537
|
||||
characters_total: 671
|
||||
file: _posts/2018-01-31-beneath-her-coat.md
|
||||
paragraphs: 5
|
||||
type: jekyll
|
||||
words: 130
|
||||
layout: post
|
||||
ratings: G
|
||||
date: 2018-01-31
|
||||
type: post
|
||||
tags:
|
||||
- Poetry
|
||||
- Furry
|
||||
@ -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
|
||||
layout: post
|
||||
type: post
|
||||
title: Bruise Vision
|
||||
categories:
|
||||
- Poem
|
||||
- Rated G
|
||||
ratings: G
|
||||
tags:
|
||||
- Poetry
|
||||
- Mental Health
|
||||
@ -1,19 +1,11 @@
|
||||
---
|
||||
author: Madison Scott-Clary
|
||||
categories:
|
||||
- Sawtooth
|
||||
- Short Story
|
||||
- Rated X
|
||||
counts:
|
||||
characters_real: 18804
|
||||
characters_total: 23200
|
||||
file: _posts/2016-12-17-centerpiece.md
|
||||
paragraphs: 118
|
||||
type: jekyll
|
||||
words: 4366
|
||||
series: Sawtooth
|
||||
ratings: X
|
||||
date: 2016-12-17
|
||||
img: flag.svg
|
||||
layout: post
|
||||
type: post
|
||||
pdf: centerpiece.pdf
|
||||
rating: X
|
||||
tags:
|
||||
@ -1,20 +1,13 @@
|
||||
---
|
||||
author: Madison Scott-Clary
|
||||
categories:
|
||||
- Sawtooth
|
||||
- Short Story
|
||||
- Rated R
|
||||
counts:
|
||||
characters_real: 50378
|
||||
characters_total: 62750
|
||||
file: _posts/2018-08-14-disappearance.md
|
||||
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.
|
||||
series: Sawtooth
|
||||
ratings: R
|
||||
description: A weasel attempts to escape from her life in Sawtooth to Oregon, but finds her old life still tied to home.
|
||||
date: 2018-08-14
|
||||
draft: true
|
||||
img: alley-cat.jpg
|
||||
layout: post
|
||||
type: post
|
||||
pdf: disappearance.pdf
|
||||
tags:
|
||||
- Furry
|
||||
@ -1,16 +1,9 @@
|
||||
---
|
||||
categories:
|
||||
- Poem
|
||||
- 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
|
||||
ratings: Rated G
|
||||
date: 2017-08-14
|
||||
layout: post
|
||||
type: post
|
||||
tags:
|
||||
- Poetry
|
||||
title: Every time I fall
|
||||
@ -1,16 +1,9 @@
|
||||
---
|
||||
categories:
|
||||
- Poem
|
||||
- Rated G
|
||||
counts:
|
||||
characters_real: 572
|
||||
characters_total: 722
|
||||
file: _posts/2018-07-08-fair-and-square.md
|
||||
paragraphs: 2
|
||||
type: jekyll
|
||||
words: 126
|
||||
ratings: Rated G
|
||||
date: 2018-07-08
|
||||
layout: post
|
||||
type: post
|
||||
tags:
|
||||
- Poetry
|
||||
- Gender
|
||||
@ -1,20 +1,13 @@
|
||||
---
|
||||
author: Madison Scott-Clary
|
||||
categories:
|
||||
- Post-Self
|
||||
- Short Story
|
||||
- Interactive
|
||||
- Rated G
|
||||
counts:
|
||||
characters_real: 627
|
||||
characters_total: 765
|
||||
file: _posts/2017-01-03-gallery-exhibition.md
|
||||
paragraphs: 5
|
||||
type: jekyll
|
||||
words: 139
|
||||
series: Post-Self
|
||||
ratings: G
|
||||
date: 2017-01-03
|
||||
description: null
|
||||
img: gallery-exhibition.svg
|
||||
layout: post
|
||||
type: post
|
||||
tags:
|
||||
- Romance
|
||||
- Science fiction
|
||||
@ -1,16 +1,9 @@
|
||||
---
|
||||
categories:
|
||||
- Non-fiction
|
||||
- Rated G
|
||||
counts:
|
||||
characters_real: 23567
|
||||
characters_total: 28865
|
||||
file: _posts/2016-12-04-gender-furry.md
|
||||
paragraphs: 89
|
||||
type: jekyll
|
||||
words: 5238
|
||||
ratings: G
|
||||
date: 2016-12-04
|
||||
layout: post
|
||||
type: post
|
||||
pdf: gender-furry.pdf
|
||||
tags:
|
||||
- Furry
|
||||
@ -1,20 +1,11 @@
|
||||
---
|
||||
author: Madison Scott-Clary
|
||||
categories:
|
||||
- Poem
|
||||
- Rated G
|
||||
counts:
|
||||
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.
|
||||
ratings: G
|
||||
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
|
||||
layout: post
|
||||
type: post
|
||||
date: 2018-07-01
|
||||
tags:
|
||||
- Poetry
|
||||
- Gender
|
||||
@ -1,16 +1,9 @@
|
||||
---
|
||||
categories:
|
||||
- Poem
|
||||
- Rated G
|
||||
counts:
|
||||
characters_real: 413
|
||||
characters_total: 514
|
||||
file: _posts/2017-02-20-heligoland.md
|
||||
paragraphs: 6
|
||||
type: jekyll
|
||||
words: 97
|
||||
ratings: G
|
||||
date: 2017-02-20
|
||||
layout: post
|
||||
type: post
|
||||
tags:
|
||||
- Poetry
|
||||
title: Heligoland
|
||||
@ -1,20 +1,12 @@
|
||||
---
|
||||
author: Madison Scott-Clary
|
||||
categories:
|
||||
- Rum and Coke
|
||||
- Short Story
|
||||
- Rated X
|
||||
counts:
|
||||
characters_real: 37824
|
||||
characters_total: 46662
|
||||
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.'
|
||||
series: Rum and Coke
|
||||
ratings: X
|
||||
date: 2015-09-02
|
||||
description: 'Navigating poly is an ongoing process demarcated. Chief among them: first meetings.'
|
||||
img: rum-and-coke.png
|
||||
layout: post
|
||||
type: post
|
||||
pdf: rum-and-coke.pdf
|
||||
tags:
|
||||
- Furry
|
||||
@ -1,16 +1,9 @@
|
||||
---
|
||||
categories:
|
||||
- Poem
|
||||
- Rated G
|
||||
counts:
|
||||
characters_real: 928
|
||||
characters_total: 1220
|
||||
file: _posts/2017-02-12-meaning-and-self.md
|
||||
paragraphs: 7
|
||||
type: jekyll
|
||||
words: 226
|
||||
ratings: G
|
||||
date: 2017-02-12
|
||||
layout: post
|
||||
type: post
|
||||
tags:
|
||||
- Poetry
|
||||
- Family
|
||||
@ -1,19 +1,13 @@
|
||||
---
|
||||
author: Madison Scott-Clary
|
||||
categories:
|
||||
- Sawtooth
|
||||
- Flash fiction
|
||||
- Rated G
|
||||
counts:
|
||||
characters_real: 1495
|
||||
characters_total: 1856
|
||||
file: _posts/2017-11-29-mind-your-manners.md
|
||||
paragraphs: 11
|
||||
type: jekyll
|
||||
words: 357
|
||||
series: Sawtooth
|
||||
ratings: G
|
||||
date: 2017-11-29
|
||||
description: '[one big awful Canadian joke]'
|
||||
img: flag.svg
|
||||
layout: post
|
||||
type: post
|
||||
tags:
|
||||
- Furry
|
||||
- Humor
|
||||
@ -1,16 +1,10 @@
|
||||
---
|
||||
categories:
|
||||
- Short Story
|
||||
- Rated G
|
||||
- Epistolary
|
||||
counts:
|
||||
characters_real: 11418
|
||||
characters_total: 14383
|
||||
file: _posts/2016-08-30-missives.md
|
||||
paragraphs: 93
|
||||
type: jekyll
|
||||
words: 2800
|
||||
layout: post
|
||||
ratings: G
|
||||
date: 2016-08-30
|
||||
type: post
|
||||
pdf: missives.pdf
|
||||
tags:
|
||||
- Furry
|
||||
@ -1,17 +1,10 @@
|
||||
---
|
||||
categories:
|
||||
- Non-fiction
|
||||
- Rated PG
|
||||
counts:
|
||||
characters_real: 37956
|
||||
characters_total: 46508
|
||||
file: _posts/2016-04-01-new-american-absinthe.md
|
||||
paragraphs: 173
|
||||
type: jekyll
|
||||
words: 8148
|
||||
ratings: PG
|
||||
date: 2016-04-01
|
||||
img: naa-all.jpg
|
||||
layout: post
|
||||
type: post
|
||||
pdf: new-american-absinthe.pdf
|
||||
tags:
|
||||
- Alcohol
|
||||
@ -1,20 +1,12 @@
|
||||
---
|
||||
author: Madison Scott-Clary
|
||||
categories:
|
||||
- Sawtooth
|
||||
- Short Story
|
||||
- Rated R
|
||||
counts:
|
||||
characters_real: 59992
|
||||
characters_total: 74277
|
||||
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.
|
||||
series: Sawtooth
|
||||
ratings: R
|
||||
date: 2017-09-03
|
||||
description: A chronically neat otter's life is thrown into disarray when she takes a homeless ringtail in from the cold.
|
||||
img: overclassification.jpg
|
||||
layout: post
|
||||
type: post
|
||||
pdf: overclassification.pdf
|
||||
tags:
|
||||
- Furry
|
||||
@ -1,15 +1,9 @@
|
||||
---
|
||||
categories:
|
||||
- Poem
|
||||
- Rated G
|
||||
counts:
|
||||
characters_real: 1832
|
||||
characters_total: 2431
|
||||
file: _posts/2017-02-12-poems-from-missives.md
|
||||
paragraphs: 15
|
||||
type: jekyll
|
||||
words: 440
|
||||
layout: post
|
||||
ratings: G
|
||||
date: 2017-02-12
|
||||
type: post
|
||||
tags:
|
||||
- Poetry
|
||||
- Romanticism
|
||||
@ -1,15 +1,9 @@
|
||||
---
|
||||
category:
|
||||
- Poem
|
||||
- Rated G
|
||||
counts:
|
||||
characters_real: 2514
|
||||
characters_total: 3302
|
||||
file: _posts/2018-05-20-post-op-images.md
|
||||
paragraphs: 25
|
||||
type: jekyll
|
||||
words: 603
|
||||
layout: post
|
||||
ratings: G
|
||||
date: 2018-05-20
|
||||
post: post
|
||||
tags:
|
||||
- Poetry
|
||||
- Gender
|
||||
@ -1,24 +1,13 @@
|
||||
---
|
||||
author: Madison Scott-Clary
|
||||
categories:
|
||||
- Post-Self
|
||||
- Short Story
|
||||
- ARG
|
||||
- Rated G
|
||||
counts:
|
||||
characters_real: 59486
|
||||
characters_total: 72902
|
||||
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.
|
||||
series: Post-Self
|
||||
ratings: G
|
||||
date: 2017-01-26
|
||||
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
|
||||
layout: post
|
||||
type: post
|
||||
tags:
|
||||
- Science fiction
|
||||
- Mystery
|
||||
@ -1,15 +1,9 @@
|
||||
---
|
||||
category:
|
||||
- Poem
|
||||
- Rated G
|
||||
counts:
|
||||
characters_real: 776
|
||||
characters_total: 1119
|
||||
file: _posts/2018-04-01-somehow-shes-me.md
|
||||
paragraphs: 5
|
||||
type: jekyll
|
||||
words: 184
|
||||
layout: post
|
||||
ratings: G
|
||||
date: 2018-04-01
|
||||
type: post
|
||||
tags:
|
||||
- Gender
|
||||
- Poetry
|
||||
@ -2,16 +2,11 @@
|
||||
author: Madison Scott-Clary
|
||||
categories:
|
||||
- Flash fiction
|
||||
- Rated G
|
||||
counts:
|
||||
characters_real: 902
|
||||
characters_total: 1117
|
||||
file: _posts/2017-02-11-sorting-laundry.md
|
||||
paragraphs: 9
|
||||
type: jekyll
|
||||
words: 216
|
||||
series: Sawtooth
|
||||
ratings: G
|
||||
date: 2017-02-11
|
||||
description: You always have to sort your laundry.
|
||||
layout: post
|
||||
type: post
|
||||
tags:
|
||||
- Gender
|
||||
- Family
|
||||
@ -1,16 +1,9 @@
|
||||
---
|
||||
categories:
|
||||
- Poem
|
||||
- Rated G
|
||||
counts:
|
||||
characters_real: 316
|
||||
characters_total: 398
|
||||
file: _posts/2015-03-05-the-dogs-assure-me.md
|
||||
paragraphs: 4
|
||||
type: jekyll
|
||||
words: 75
|
||||
ratings: G
|
||||
date: 2015-03-06
|
||||
layout: post
|
||||
type: post
|
||||
tags:
|
||||
- Animals
|
||||
- Poetry
|
||||
@ -1,20 +1,12 @@
|
||||
---
|
||||
author: Madison Scott-Clary
|
||||
categories:
|
||||
- Sawtooth
|
||||
- Short Story
|
||||
- Rated G
|
||||
counts:
|
||||
characters_real: 16414
|
||||
characters_total: 20452
|
||||
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.
|
||||
series: Sawtooth
|
||||
ratings: G
|
||||
date: 2017-05-08
|
||||
description: A student and a motherly badger explore questions of identity through a tarot reading.
|
||||
img: the-fool.png
|
||||
layout: post
|
||||
type: post
|
||||
pdf: the-fool.pdf
|
||||
tags:
|
||||
- Furry
|
||||
@ -1,15 +1,9 @@
|
||||
---
|
||||
category:
|
||||
- Poem
|
||||
- Rated G
|
||||
counts:
|
||||
characters_real: 431
|
||||
characters_total: 556
|
||||
file: _posts/2016-05-04-there-is-too-much-fire-in-me.md
|
||||
paragraphs: 3
|
||||
type: jekyll
|
||||
words: 103
|
||||
layout: post
|
||||
ratings: G
|
||||
date: 2016-05-04
|
||||
type: post
|
||||
tags:
|
||||
- Mental Health
|
||||
- Poetry
|
||||
@ -1,20 +1,12 @@
|
||||
---
|
||||
author: Madison Scott-Clary
|
||||
categories:
|
||||
- Rum and Coke
|
||||
- Short Story
|
||||
- Rated X
|
||||
counts:
|
||||
characters_real: 40294
|
||||
characters_total: 49562
|
||||
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.
|
||||
series: Rum and Coke
|
||||
ratings: X
|
||||
date: 2015-09-01
|
||||
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
|
||||
layout: post
|
||||
type: post
|
||||
pdf: rum-and-coke.pdf
|
||||
tags:
|
||||
- Furry
|
||||
@ -1,20 +1,12 @@
|
||||
---
|
||||
author: Madison Scott-Clary
|
||||
categories:
|
||||
- Sawtooth
|
||||
- Short Story
|
||||
- Rated X
|
||||
counts:
|
||||
characters_real: 12013
|
||||
characters_total: 14822
|
||||
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.
|
||||
series: Sawtooth
|
||||
ratings: X
|
||||
date: 2017-01-30
|
||||
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
|
||||
layout: post
|
||||
type: post
|
||||
pdf: what-remains-of-yourself.pdf
|
||||
tags:
|
||||
- Furry
|
||||
@ -1,16 +1,9 @@
|
||||
---
|
||||
category:
|
||||
- Poem
|
||||
- Rated 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
|
||||
ratings: G
|
||||
date: 2016-11-14
|
||||
layout: post
|
||||
type: post
|
||||
tags:
|
||||
- Poetry
|
||||
title: When I fall, I will remain whole
|
||||
@ -1,15 +1,9 @@
|
||||
---
|
||||
categories:
|
||||
- Flash fiction
|
||||
- Rated G
|
||||
counts:
|
||||
characters_real: 1742
|
||||
characters_total: 2172
|
||||
file: _posts/2017-11-29-where-the-dust-comes-from.md
|
||||
paragraphs: 16
|
||||
type: jekyll
|
||||
words: 426
|
||||
layout: post
|
||||
ratings: G
|
||||
date: 2017-11-29
|
||||
type: post
|
||||
tags:
|
||||
- Family
|
||||
title: Where the Dust Comes From
|
||||
@ -1,20 +1,13 @@
|
||||
---
|
||||
author: Madison Scott-Clary
|
||||
categories:
|
||||
- Short Story
|
||||
- Interactive
|
||||
- Sawtooth
|
||||
- Rated G
|
||||
counts:
|
||||
characters_real: 318
|
||||
characters_total: 405
|
||||
file: _posts/2018-01-26-youre-gone.md
|
||||
paragraphs: 8
|
||||
type: jekyll
|
||||
words: 73
|
||||
series: Sawtooth
|
||||
ratings: G
|
||||
date: 2018-01-26
|
||||
description: An exploration in grief, told through instant messages to the dead.
|
||||
img: flag.svg
|
||||
layout: post
|
||||
type: post
|
||||
tags:
|
||||
- Furry
|
||||
- Death
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user