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.
9 lines
447 B
9 lines
447 B
mixin renderSectionTitle (title, barButton, options)
|
|
- options = Object.assign({ withBorder: true }, options);
|
|
div(class= options.withBorder ? 'dtp-border-bottom' : 'uk-margin-small')
|
|
div(uk-grid).uk-grid-small.uk-flex-middle
|
|
.uk-width-expand
|
|
h4.uk-margin-small= title
|
|
if barButton
|
|
.uk-width-auto
|
|
a(href= barButton.url, title= barButton.title).uk-button.uk-button-link.uk-button-small= barButton.label
|