og.html 528 B

1234567891011121314
  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. {% if SITELOGO %}
  13. <meta property="og:image" content="{{ SITELOGO }}">
  14. {% endif %}