diff options
Diffstat (limited to 'templates/blog-page.html')
| -rw-r--r-- | templates/blog-page.html | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/templates/blog-page.html b/templates/blog-page.html index 8ca5835..2783f14 100644 --- a/templates/blog-page.html +++ b/templates/blog-page.html @@ -1,6 +1,13 @@ {% extends "base.html" %} -{% block title %}{{ page.title }}{% endblock title %} +{% block title %} {{ page.title }} {% endblock title %} + +{% block meta %} +<meta content="{{ page.title }}" name="og:title"> +<meta content="https://lemon.rip" name="og:url"> +<meta name="og:description" content="{{ page.content | striptags | truncate(length=180) }}"> +<link href="/oembed-default-data.json" type="application/json+oembed"> +{% endblock meta %} {% block content %} |