mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-07 17:23:32 +01:00
11 lines
405 B
HTML
11 lines
405 B
HTML
{{ .Scratch.Set "identifier" (first 10 (md5 .Inner)) }}
|
|
|
|
<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#{{printf "collapse_%s" (.Scratch.Get "identifier") }}" aria-expanded="false">
|
|
{{ print (.Get "title") }}
|
|
</button>
|
|
|
|
<div class="collapse" id="{{printf "collapse_%s" (.Scratch.Get "identifier") }}">
|
|
<div class="card card-body">
|
|
{{ .Inner }}
|
|
</div>
|
|
</div> |