32 lines
865 B
HTML
32 lines
865 B
HTML
{% extends "base.html" %}
|
|
{% block title %}
|
|
{{section.title}}
|
|
{% endblock title %}
|
|
|
|
{% block head %}
|
|
{{ super() }}
|
|
<meta property="og:description" content="{{config.description}}" />
|
|
<meta property="description" content="{{config.description}}" />
|
|
<meta name="og:title" content="Evan Pratten (VA3ZZA)" />
|
|
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "WebSite",
|
|
"url": "https://va3zza.com/",
|
|
"about": "{{config.description}}",
|
|
"potentialAction": [{
|
|
"@type": "SearchAction",
|
|
"target": {
|
|
"@type": "EntryPoint",
|
|
"urlTemplate": "https://va3zza.com/search?q={search_term_string}"
|
|
},
|
|
"query-input": "required name=search_term_string"
|
|
}]
|
|
}
|
|
</script>
|
|
{% endblock head %}
|
|
|
|
{% block content %}
|
|
{{section.content | safe}}
|
|
{% endblock content %} |