45 lines
1.3 KiB
HTML
45 lines
1.3 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{# Additional metadata for Google #}
|
|
{% block head %}
|
|
{{ super() }}
|
|
|
|
<script type="application/ld+json">
|
|
{% set person_ld = load_data(path="static/person.jsonld")%}
|
|
{% if person_ld %}{{person_ld | safe}}{% endif %}
|
|
</script>
|
|
<script type="application/ld+json">
|
|
{# Import our template file #}
|
|
{% set template = load_data(path="jsonld_templates/website.jsonld") %}
|
|
{# Now we can fill in any additional data #}
|
|
{{ template |
|
|
replace(from="{{url}}", to=config.base_url) |
|
|
replace(from="{{title}}", to=section.title) |
|
|
replace(from="{{description}}", to=config.description) |
|
|
replace(from="{{avatar}}", to=config.extra.profile_photo) |
|
|
safe
|
|
}}
|
|
</script>
|
|
{% endblock head %}
|
|
|
|
{# Pass data through to the base template #}
|
|
{% block variable_wormhole %}
|
|
{{ super() }}
|
|
{% set page_path = "/" %}
|
|
{% set title = section.title %}
|
|
{% set description = config.description %}
|
|
{% if section.extra.uses %}
|
|
{% set feature_flags = section.extra.uses %}
|
|
{% endif %}
|
|
{% if section.extra.announcement %}
|
|
{% set announcement = section.extra.announcement %}
|
|
{% endif %}
|
|
{% endblock variable_wormhole %}
|
|
|
|
{# Page content #}
|
|
{% block page_start %}
|
|
{% include "components/about-card.html" %}
|
|
{% endblock page_start %}
|
|
{% block content %}
|
|
{{ section.content | safe }}
|
|
{% endblock content %} |