9 lines
192 B
HTML
9 lines
192 B
HTML
|
{% macro author(page) %}
|
||
|
::
|
||
|
{% if page.extra.author -%}
|
||
|
{{ page.extra.author }}
|
||
|
{%- else -%}
|
||
|
{{ config.extra.author }}
|
||
|
{%- endif -%}
|
||
|
{%- endmacro author-%}
|