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.
18 lines
379 B
18 lines
379 B
{# |
|
/** |
|
* @file |
|
* Default theme implementation to display a back to top link. |
|
* |
|
* Returns HTML for a back to top link. |
|
* |
|
* Available variables: |
|
* - item: A table of contents header item. |
|
* - options: Options associated with the current header item. |
|
* |
|
* @ingroup themeable |
|
*/ |
|
#} |
|
|
|
{% set classes = ['back-to-top'] %} |
|
|
|
<a{{ attributes.addClass(classes) }}>{{ label }}</a>
|
|
|