Skip to content

Instantly share code, notes, and snippets.

@okomarov
Last active November 11, 2019 13:59
Show Gist options
  • Save okomarov/6251e6880a130ecbae99adff857697aa to your computer and use it in GitHub Desktop.
Save okomarov/6251e6880a130ecbae99adff857697aa to your computer and use it in GitHub Desktop.
viral queue og tags
<head>
{% set title="Your page title goes here"%}
{% set description="Some description if you wish."%}
<!-- Social sharing tags -->
<meta property="og:title" content="{{ title }}">
<meta property="og:description" content="{{ description }}">
<meta property="og:image" content="{{ url_for('static', filename='img/social-sharing-thumbnail.png', _external=True) }}">
<meta property="og:url" content="{{ url_for('main.index', _external=True) }}">
<meta name="twitter:card" content="summary_large_image">
...
</head>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment