This commit is contained in:
Madison Scott-Clary
2019-08-11 14:56:41 -07:00
parent 2766e84142
commit 6a1783608e
5 changed files with 15 additions and 2 deletions

9
content/about/_index.md Normal file
View File

@ -0,0 +1,9 @@
---
type: serial
---
*ally* is an autobiographical project. A lot of the information contained within is real, some of it isn't. Each page is structured as a conversation between myself and my ally, a mirror reflection of myself. The idea was originally cribbed from Dale Pendell's wonderful *Pharmako/\** trilogy back in my late teens, but has since taken on a life of its own.
Other inspirations are Mark Z. Danielewski's <em><span style="color: blue">House</span> of Leaves</em> and J. J. Abrams and Doug Dorst's <em>S</em> for both their ergodic elements and the underlying autobiographical elements. On the hypertextual side, projects such as the old [Fray](http://fray.com/index-old.shtml) (notably the story [The Worm Within](https://fray.com/drugs/worm/)) and [Nobody Here](https://nobodyhere.com). Bonus points to [Ouverture Facile](http://www.ouverture-facile.com/) and the ilk for getting me thinking about online projects, even if this one isn't so riddly yet.
If you'd like to read more of my stuff, I have a [writing page](https://writing.drab-makyo.com) (which even includes [a plain old blog](https://writing.drab-makyo.com/blog/)) and a [writing portfolio](https://makyo.ink).

View File

@ -1,5 +1,5 @@
<footer> <footer>
<p>&copy; Madison Scott-Clary, 2019</p> <p>&copy; Madison Scott-Clary, 2019 &bull; <a href="/about">About</a></p>
</footer> </footer>
</body> </body>
</html> </html>

View File

@ -1,4 +1,4 @@
<body> <body>
<header> <header>
<h1>ally</h1> <h1><a href="/">ally</a></h1>
</header> </header>

View File

@ -1,5 +1,6 @@
{{ define "main" }} {{ define "main" }}
<main id="main"> <main id="main">
{{ .Content }}
{{ $paginator := .Paginate (where .Pages ".Params.date" "!=" nil) 1 }} {{ $paginator := .Paginate (where .Pages ".Params.date" "!=" nil) 1 }}
{{ range $paginator.Pages.ByWeight }} {{ range $paginator.Pages.ByWeight }}
{{ .Content }} {{ .Content }}

View File

@ -83,6 +83,9 @@ h1 {
padding: 0; padding: 0;
margin: 0; margin: 0;
} }
h1 a {
border: none;
}
main, footer { main, footer {
max-width: 960px; max-width: 960px;
margin: 0 auto; margin: 0 auto;