github.com/cs3org/reva/v2@v2.27.7/docs/layouts/shortcodes/dir.html (about) 1 <!--https://gohugo.io/content-management/shortcodes/#shortcodes-with-markdown--> 2 <!-- https://github.com/gohugoio/hugo/pull/2623 --> 3 {{ $_hugo_config := `{ "version": 1 }` }} 4 {{ $color := .Get "color" | default "white" }} 5 {{ $name := .Get "name" }} 6 {{ $type := .Get "type" }} 7 {{ $default := .Get "default" }} 8 {{ $desc := .Get "description" }} 9 10 <div class="alert alert-{{ $color }}" role="alert"> 11 <h1 id="{{ $name }}">{{ $name }} <span class="badge text-muted">{{ $type }}</span> <span class="badge badge-primary">{{ $default }}</span></h1> 12 <p> 13 {{ .Inner }} 14 </p> 15 </div>