og.html 516 B

123456789101112
  1. {% if OG_LOCALE %}
  2. {% set default_locale = OG_LOCALE %}
  3. {% else %}
  4. {% set default_locale = 'en_US' %}
  5. {% endif %}
  6. <meta property="og:site_name" content="{{ SITENAME }}" />
  7. <meta property="og:type" content="blog" />
  8. <meta property="og:title" content="{{ SITENAME }}" />
  9. <meta property="og:description" content="{{ SITEDESCRIPTION }}" />
  10. <meta property="og:locale" content="{{ default_locale }}" />
  11. <meta property="og:url" content="{{ SITEURL }}" />
  12. <meta property="og:image" content="{{ SITEURL }}/{{ SITELOGO }}">