flex/templates/partial/og.html
2017-06-03 23:35:11 -07:00

16 lines
598 B
HTML

{% if OG_LOCALE %}
{% set default_locale = OG_LOCALE %}
{% else %}
{% set default_locale = 'en_US' %}
{% endif %}
<meta property="og:site_name" content="{{ SITENAME }}"/>
<meta property="og:type" content="blog"/>
<meta property="og:title" content="{{ SITENAME }}"/>
<meta property="og:description" content="{{ SITEDESCRIPTION }}"/>
<meta property="og:locale" content="{{ default_locale }}"/>
<meta property="og:url" content="{{ SITEURL }}"/>
{% if OG_IMAGE %}
<meta property="og:image" content="{{ OG_IMAGE }}">
{% if SITELOGO %}
<meta property="og:image" content="{{ SITELOGO }}">
{% endif %}