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
| <script type="application/ld+json"> | |
| { | |
| "@context": "https://schema.org", | |
| "@type": "Organization", | |
| "url": "http://www.ejemplo.com", | |
| "name": "Nombre de la empresa", | |
| "contactPoint": { | |
| "@type": "ContactPoint", | |
| "telephone": "+1-000-555-1212", | |
| "contactType": "Customer service" |
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
| javascript:document.body.contentEditable = 'true'; document.designMode='on'; void 0 |
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
| <html> | |
| <head> | |
| <title>Preguntas frecuentes</title> | |
| <script type="application/ld+json"> | |
| { | |
| "@context": "https://schema.org", | |
| "@type": "FAQPage", | |
| "mainEntity": [{ | |
| "@type": "Question", | |
| "name": "Pregunta 1", |
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
| <!--Sitemap base--> | |
| <?xml version="1.0" encoding="utf-8"?> | |
| <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | |
| <url> | |
| <loc>https://jorgejaramillo.com/</loc> | |
| <lastmod>2020-10-08</lastmod> | |
| <changefreq>daily</changefreq> | |
| <priority>1.0</priority> | |
| </url> | |
| </urlset> |
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
| <title>Torta de Banano</title> | |
| <meta name="title" content="Torta de Banano" /> | |
| <meta name="description" content="Conoce las diferentes recetas de Torta de banano." /> | |
| <meta http-equiv="content-language" content="es" /> | |
| <meta name="robots" content="index, follow" /> | |
| <link rel="canonical" href="https://tortadebanano.com" /> | |
| <meta name="author" content="Tu nombre" /> |
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
| <script type="application/ld+json"> | |
| { | |
| "@context": "https://schema.org/", | |
| "@type": "Recipe", | |
| "name": "Receta de PLATANO CON QUESO", | |
| "image": "https://tortadebanano.com/img/torta-banano-paso-1.jpg", | |
| "description": "Un manjar del trópico.", | |
| "keywords": "Bananos, banana", | |
| "author": { | |
| "@type": "Person", |
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
| User-Agent: * | |
| Disallow: | |
| Sitemap: https://ejemplo.com/sitemap.xml |
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
| <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Tangerine"> |
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
| {% if first_time_accessed %} | |
| <script> | |
| window.dataLayer = window.dataLayer || []; | |
| var shipping_price = '{{shipping_price | money_without_currency }}'; | |
| shipping_price = shipping_price.replace(",", "."); | |
| var total_price = '{{total_price | money_without_currency }}'; | |
| total_price = total_price.replace(",", "."); | |
| var tax_price = '{{tax_price | money_without_currency }}'; | |
| tax_price = tax_price.replace(",", "."); | |
| window.dataLayer.push({ |