1

nicer description handling

This commit is contained in:
Evan Pratten 2021-11-16 12:03:09 -05:00
parent edb3a73c19
commit 8930a81f48
4 changed files with 14 additions and 3 deletions

View File

@ -1,6 +1,6 @@
base_url = "https://va3zza.com"
title = "Evan Pratten"
description = "Evan Pratten's website"
description = "Evan Pratten is a college student, amateur radio operator, software developer, and more. This is his website."
default_language = "en"
compile_sass = true
build_search_index = true

View File

@ -5,8 +5,8 @@
{% 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 property="og:description" content="{{config.description}}" />
<meta property="description" content="{{config.description}}" />
<meta name="og:title" content="Evan Pratten (VA3ZZA)" />
{% endblock head %}

View File

@ -21,6 +21,10 @@ MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']], displayMat
<meta property="og:type" content="article" />
{% if page.description %}
<meta property="og:description" content="{{page.description}}" />
<meta property="description" content="{{page.description}}" />
{% else %}
<meta property="og:description" content="{{config.description}}" />
<meta property="description" content="{{config.description}}" />
{% endif %}
<meta property="article:published_time" content="{{page.date}}T00:00:00+00:00" />
{% endblock head %}

View File

@ -6,6 +6,13 @@
{% block head %}
{{ super() }}
<meta property="og:title" content="{{section.title}}" />
{% if section.description %}
<meta property="og:description" content="{{section.description}}" />
<meta property="description" content="{{section.description}}" />
{% else %}
<meta property="og:description" content="{{config.description}}" />
<meta property="description" content="{{config.description}}" />
{% endif %}
{% endblock head %}
{% block content %}