diff options
Diffstat (limited to 'layouts/_default/comic.html')
-rw-r--r-- | layouts/_default/comic.html | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/layouts/_default/comic.html b/layouts/_default/comic.html index d13b76e..ef86c7c 100644 --- a/layouts/_default/comic.html +++ b/layouts/_default/comic.html @@ -15,18 +15,23 @@ </center> {{ end}} </header> - <div class="content e-content"> + <section class="content e-content"> <center> {{ partial "comicNav.html" . }} <img title="{{ .Params.TitleText }}" - alt={{ readFile (delimit (slice "/static/comics/" .Params.ComicId "/transcript.txt") "")}} + alt="Comic panels. See transcription below." src="/comics/{{ .Params.ComicId }}/{{ .Params.ComicTitle }}.png" srcset="/comics/{{ .Params.ComicId }}/{{ .Params.ComicTitle }}_full.png 2x" > {{ partial "comicNav.html" . }} - {{ .Content }} - <center> - </div> + </center> + <details> + <summary> + Transcription and extras + </summary> + {{ .Content }} + </details> + </section> {{ partial "postInfo.html" . }} </article> |