mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-28 11:00:08 +02:00

* Use meta tags for user info data * Remove Back button * Refactor syntax for conditional classes * Inline meta tags * Keep "Please go back and try again" text * Shorthand classname GitOrigin-RevId: 3b78bff04b4fb8dc7fdecf5b663d2a4f64c3218b
10 lines
222 B
Text
10 lines
222 B
Text
mixin bookmarkable-tabset-header(id, title, active)
|
|
li(role='presentation')
|
|
a.nav-link(
|
|
href='#' + id
|
|
class={active}
|
|
aria-controls=id
|
|
role='tab'
|
|
data-toggle='tab'
|
|
data-ol-bookmarkable-tab
|
|
) #{title}
|