23 lines
452 B
HTML
23 lines
452 B
HTML
---
|
|
actor:
|
|
type: 'string'
|
|
default: ''
|
|
activity:
|
|
type: 'string'
|
|
default: ''
|
|
profile:
|
|
type: 'string'
|
|
default: ''
|
|
---
|
|
{%- unless actor == empty -%}
|
|
{%- render 'activity_pub/actor.html', id: actor -%}
|
|
{%- endunless -%}
|
|
|
|
{%- unless activity == empty -%}
|
|
{%- render 'activity_pub/alternate.html', id: activity -%}
|
|
{% endunless %}
|
|
|
|
{%- unless profile == empty -%}
|
|
<meta property="profile:username" content="{{ profile }}">
|
|
{%- endunless -%}
|