docs-v2/layouts/partials/footer/notifications.html

23 lines
762 B
HTML

<div id="docs-notifications">
{{ range .Site.Data.notifications }}
<div class="notification {{ .level }} min" id="{{ .id }}" data-scope='{{ if .scope }}{{ delimit .scope "," }}{{ else }}/{{ end }}' data-exclude='{{ if .exclude }}{{ delimit .exclude ","}}{{ end }}'>
<div class="close-notification"><span class="cf-icon Remove_New"></span></div>
<div class="notification-title">
<h3>{{ .title }}</h3>
</div>
{{ if .slug }}
<div class="notification-slug">
{{ .slug | markdownify }}
</div>
{{ end }}
{{ if .message }}
<div class="notification-content">
{{ .message | markdownify }}
</div>
<span class="show"></span>
{{ end }}
</div>
{{ end }}
</div>