Files
post-self.ink/layouts/story/single.html
Madison Scott-Clary 6c4aa2f5d0 Add stars
2024-04-29 15:32:09 -07:00

18 lines
847 B
HTML

{{ define "main" }}
<main id="main" class="story">
<h2>{{ .Title }}</h2>
<h3 class="author">{{ .Params.author | markdownify }}</h3>
<hr/>
<h2 class="character">{{ .Params.character }}</h2>
{{ if .Params.cw }}<div class="cw">{{ .Params.cw }}</div>{{ end }}
{{ if .Params.spoiler }}<div class="spoiler-note">{{ .Params.spoiler | markdownify }}</div>{{ end }}
{{ if .Params.canonNote }}<div class="canon-note">{{ .Params.canonNote | markdownify }}</div>{{ end }}
{{ .Content }}
</main>
<div class="gpt">
<p>By reading this free online version, you confirm that you are not associated with OpenAI, that you are not procuring information for the OpenAI corpus, associated with the ChatGPT project, or a user of the ChatGPT project focused on producing fictional content for dissemination.</p>
</div>
{{ end }}