Last active
April 30, 2024 00:12
-
-
Save josecaos/ca57813b680cc7b68de18acb87129a6d to your computer and use it in GitHub Desktop.
Twitter Cards - Open Graph
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
| // X cards | |
| <meta name=”twitter:card” content=”summary” /> | |
| <meta name=”twitter:site” content=”@yoursite” /> | |
| <meta name=”twitter:title” content=”Your Title” /> | |
| <meta name=”twitter:description” content=”Your description.” /> | |
| <meta name=”twitter:image” content=”https://where-your-image-is-hosted/name.jpg” /> | |
| // Open Graph | |
| <meta property="og:title" content="Título de tu artículo o página"> | |
| <meta property="og:description" content="Descripción del contenido"> | |
| <meta property="og:image" content="URL_de_la_imagen_destacada"> | |
| <meta property="og:url" content="URL_de_tu_página"> | |
| <meta property="og:type" content="website"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment