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.

19 lines
646 B

4 years ago
{#- Post Copyright -#}
{%- if theme.copyright.enable and page.copyright !== false -%}
<div class="post-copyright">
<p class="copyright-item">
<span>{{ __('copyright.author') + ': ' }}</span>
4 years ago
<a href="{{ theme.copyright.authorUrl }}">{{ config.author }}</a>
4 years ago
</p>
<p class="copyright-item">
<span>{{ __('copyright.link') + ': ' }}</span>
<a href="{{ page.permalink }}">{{ page.permalink }}</a>
</p>
<p class="copyright-item">
<span>{{ __('copyright.license') + ': ' }}</span>
{%- set license = page.license || theme.copyright.license -%}
{{ license }}
</p>
</div>
{%- endif -%}