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.
12 lines
529 B
12 lines
529 B
7 years ago
|
{% set title_level = title_level ?: 'h2' %}
|
||
|
{% if page.header.link %}
|
||
|
<{{ title_level }} class="p-name mt-1">
|
||
|
{% if page.header.continue_link is not sameas(false) %}
|
||
|
<a href="{{ page.url }}"><i class="fa fa-angle-double-right u-url"></i></a>
|
||
|
{% endif %}
|
||
|
<a href="{{ page.header.link }}" class="u-url">{{ page.title }}</a>
|
||
|
</{{ title_level }}>
|
||
|
{% else %}
|
||
|
<{{ title_level }} class="p-name mt-1"><a href="{{ page.url }}" class="u-url">{{ page.title }}</a></{{ title_level }}>
|
||
|
{% endif %}
|