mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
10 lines
226 B
Text
10 lines
226 B
Text
|
mixin bookmarkable-tabset-header(id, title, active)
|
||
|
li(role="presentation" class=(active ? 'active' : ''))
|
||
|
a(
|
||
|
href='#' + id
|
||
|
aria-controls=id
|
||
|
role="tab"
|
||
|
data-toggle="tab"
|
||
|
data-ol-bookmarkable-tab
|
||
|
) #{title}
|