Last active
November 11, 2019 13:59
-
-
Save okomarov/6251e6880a130ecbae99adff857697aa to your computer and use it in GitHub Desktop.
viral queue og tags
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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