You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
386 B
14 lines
386 B
|
4 weeks ago
|
{{define "block_action"}}
|
||
|
|
<section class="panel action-panel">
|
||
|
|
<div class="panel-header">
|
||
|
|
<h2>{{.Title}}</h2>
|
||
|
|
</div>
|
||
|
|
<div class="action-copy">{{.Action.Description}}</div>
|
||
|
|
<div class="panel-actions">
|
||
|
|
{{range .Action.Buttons}}
|
||
|
|
<button type="button" class="btn {{.Variant}}" data-mock-action="{{.Action}}">{{.Label}}</button>
|
||
|
|
{{end}}
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
{{end}}
|