15 lines
561 B
HTML
15 lines
561 B
HTML
{% extends "base.html" %}
|
|
{% block title %}
|
|
{{section.title}}
|
|
{% endblock title %}
|
|
|
|
{% block head %}
|
|
{{ super() }}
|
|
<meta name="description" content="Evan Pratten is a college student, amateur radio operator, software developer, and more. This is his website." />
|
|
<meta name="og:description" content="Evan Pratten is a college student, amateur radio operator, software developer, and more. This is his website." />
|
|
<meta name="og:title" content="Evan Pratten (VA3ZZA)" />
|
|
{% endblock head %}
|
|
|
|
{% block content %}
|
|
{{section.content | safe}}
|
|
{% endblock content %} |