diff --git a/config.toml b/config.toml index ca3ab04..39e3fca 100644 --- a/config.toml +++ b/config.toml @@ -62,26 +62,31 @@ uglyURLs = false name = 'Tips' url = '/tips/' weight = 30 +[[menu.main]] + identifier = 'anecdotes' + name = 'Anecdotes' + url = '/anecdotes/' + weight = 40 [[menu.main]] identifier = 'faq' name = 'FAQ' url = '/faq/' - weight = 40 + weight = 50 [[menu.main]] identifier = 'posts' name = 'News' url = '/posts/' - weight = 50 + weight = 60 [[menu.main]] identifier = 'about' name = 'About' url = '/' - weight = 60 + weight = 70 [[menu.main]] identifier = 'rss' name = 'RSS' url = 'index.xml' - weight = 70 + weight = 80 #[[menu.main]] # identifier = 'tags' diff --git a/content/anecdotes/_template.md b/content/anecdotes/_template.md new file mode 100644 index 0000000..add7074 --- /dev/null +++ b/content/anecdotes/_template.md @@ -0,0 +1,42 @@ +--- +title: _ Anecdote Template _ +author: + - YourName + - GhostWriterNameIfAppropriate +publishDate: 1900-12-30 +lastMod: 1900-12-30 +toc: true +draft: true +categories: + - anecdote +tags: + - anecdote +--- + +## Changelog +{{< changelog >}} +{{< change 1900-12-30 "Initial creation" >}} +{{< /changelog >}} + +{{< end_section >}} + +## The Scene +{{< back_to_top >}} + +Any detail needed to understand the anecdote + +{{< end_section >}} + +## An Anecdote +{{< back_to_top >}} + +A personal journey + +{{< end_section >}} + +## Reflection(s) +{{< back_to_top >}} + +Thoughts/feels/advice/etc expansion + +{{< back_to_top >}} diff --git a/content/anecdotes/anon-tubes-tied-0001.md b/content/anecdotes/anon-tubes-tied-0001.md new file mode 100644 index 0000000..590a726 --- /dev/null +++ b/content/anecdotes/anon-tubes-tied-0001.md @@ -0,0 +1,52 @@ +--- +title: Tube Tying +author: + - Anonymous + - KemoNine (Ghost Writer) +publishDate: 2023-03-23 +lastMod: 2023-03-23 +toc: true +draft: false +categories: + - anecdote +tags: + - anecdote +--- + +## Changelog +{{< changelog >}} +{{< change 2023-03-23 "Initial creation" >}} +{{< /changelog >}} + +{{< end_section >}} + +## The Scene +{{< back_to_top >}} + +Two disabled humans discussing surgery and medical test preparation procedures that can cause great harm. They have been comparing notes and cross referencing useful tricks for improving pre and post procedure outcomes. + +{{< end_section >}} + +## An Anecdote +{{< back_to_top >}} + +... + +Like, when I had my tubes tied 10yra ago that "minor" surgery wrecked me. + +In hindsight I would have said, I can't do no eating/drinking 12hrs before because my body doesn't hold water well. I went into the surgery already dehydrated, and afterwards couldn't stop barfing because morphine, and they wouldn't let me go until I peed, but of course I couldn't pee because I was dehydrated af. + +So next time: I will fast but not stop fluida until 1hr before (or whatever is actually necessary for me not to risk puking and choking). I would tell them, no opiates so come up with a different pain plan, and I would say leave the IV running until I feel ok to eat/drink (they turn it of in recovery so they know you are taking in enough fluids). + +... + +{{< end_section >}} + +## Reflection(s) +{{< back_to_top >}} + +Anyway big meander to say, it might be worthwhile to talk about what you "really" need to do for this, and what else might be done to make it less grueling. + +It would make the whole procedure less ruinous for your already stressed body, it would make you feel more in control and safe, and thus would hopefully dial down the triggery nature of another medical procedure. + +{{< back_to_top >}} diff --git a/content/faq/contributing.md b/content/faq/contributing.md index dbceda5..79a83db 100644 --- a/content/faq/contributing.md +++ b/content/faq/contributing.md @@ -14,6 +14,7 @@ tags: ## Changelog {{< changelog >}} +{{< change 2023-03-23 "Add info on anecdotes" >}} {{< change 2023-03-22 "Fix typo" >}} {{< change 2023-03-21 "Remove source code section as it's spurrious info presently" >}} {{< change 2023-03-21 "Re-order sections to be more similar to the order of the initial sections of content pages" >}} @@ -66,6 +67,13 @@ If you'd like to submit full markdown files or larger edits, please review the c {{< back_to_top >}} +### Anonymous Anecdotes +{{< back_to_top >}} + +If you'd like to submit an anecdote to the site anonymously, please get in touch via a burner account. We can work with you to get your anecdote published on the site via a ghost writer. + +{{< back_to_top >}} + ### Pull Requests If you've used GitHub and git in the past, we will accept `Pull Requests` for updates. However, we will *not* describe the process here as it is an avanced topic we are not supporting directly. Consider `Pull Requests` a convenience that could go away in the future due to their inherent complexity. @@ -94,6 +102,8 @@ Files and folders are setup with the following overall layout. yyyy-MM-dd-title/index.md faq/title-1.md title-2/index.md + anecdotes/[author]-[title]-[nnnn].md + [author]-[title]-[nnnn]/index.md ``` {{< back_to_top >}} @@ -129,10 +139,15 @@ In this layout the `faq` directory contains all of the FAQ pages with file names We will also use `Page Bundles` ([Hugo docs](https://gohugo.io/content-management/page-bundles/)) for content that includes non-textual content or download links. `Page Bundles` are just folders with an `index.md` file and related assets. The `index.md` file is the main content and any files stored next to `index.md` can be easily referenced directly from `index.md`. This is particularly helpful for managing image assets and keeping them organized. +### Anecdotes Directory +{{< back_to_top >}} + +In this layout the `anecdotes` directory contains all of the Anecdote pages with `[author]` being the name of the first author, `[title]` being the title of the page and `[nnnn]` being a left padded 4 digit number that counts up from 1. This numbered serial allows us to avoid file name collisions while keeping the file layout a bit easier to manage. + +We will also use `Page Bundles` ([Hugo docs](https://gohugo.io/content-management/page-bundles/)) for content that includes non-textual content or download links. `Page Bundles` are just folders with an `index.md` file and related assets. The `index.md` file is the main content and any files stored next to `index.md` can be easily referenced directly from `index.md`. This is particularly helpful for managing image assets and keeping them organized. + {{< end_section >}} - - ## Authorship {{< back_to_top >}} @@ -175,16 +190,24 @@ Please review the main tag list [here](/tags) (warning: this list can be large a Long term we hope to build a tag glossary to enhance discovery, search and synonym management. If/when this glossary is created, we will update our guidelines related to tagging. +{{< end_section >}} + +## Tag and Category Extra Considerations {{< back_to_top >}} -### Extra Considerations -{{< back_to_top >}} +## Anecdotes -#### FAQ +You **must** only apply the `anecdote` tag and category to anecdote pages. These pages are personal accounts of living with disability and can be very triggering for readers. + +We have setup the site to include a warning at the top of all anecdote pages and it *requires* the `anecdote` category be applied to these pages. + +Submissions not tagging or categorizing anecdotes properly will *not* be approved for inclusion on this site. + +### FAQ For the `FAQ` section of the site we ask that you *only tag* entries with the `faq` tag. This allows the FAQ pages to be related to each other but still remain independent of the main site content. Adding additional tags will tie the FAQ pages into other content which is exactly what we want to avoid. -#### News +### News For the `News` section of the site we ask that you do **NOT** tag entries. The news pages are meant to be minimal and kept independent of the main site information. Adding a tag will tie the news pages into other content which is exactly what we want to avoid. diff --git a/themes/hugo-xmin/layouts/partials/page_meta.html b/themes/hugo-xmin/layouts/partials/page_meta.html index 8e8d478..21f3d8c 100644 --- a/themes/hugo-xmin/layouts/partials/page_meta.html +++ b/themes/hugo-xmin/layouts/partials/page_meta.html @@ -2,6 +2,9 @@ + {{ if in .Params.categories "anecdote" }} +

WARNING!
This page may be triggering, it contains a personal account of living with disability and may contain graphic, disturbing material for readers.

+ {{ end }} {{ if .Page.Params.toc }}
Jump to ToC {{ else }} diff --git a/themes/hugo-xmin/static/css/style.css b/themes/hugo-xmin/static/css/style.css index 1d5b114..84c67d0 100644 --- a/themes/hugo-xmin/static/css/style.css +++ b/themes/hugo-xmin/static/css/style.css @@ -61,3 +61,10 @@ table thead th { border-bottom: 1px solid #ddd; } th, td { padding: 5px; } thead, tfoot, tr:nth-child(even) { background: #eee; } +.anecdote-meta { + text-decoration: none; + color: #dbd7d2; + background: #ff1493; + padding: 5px; + border-radius: 5px; +} \ No newline at end of file