templates/common/meta.html.twig line 1

Open in your IDE?
  1. <meta property="og:site_name" content="{{ seo.siteName }}" />
  2. {#{% if seo.author is defined %}
  3.     <meta property="author" content="{{ seo.author }}" />
  4. {% endif %}#}
  5. {% if seo.robots is defined %}
  6.     <meta property="robots" content="{{ seo.robots }}" />
  7. {% else %}
  8.     <meta name="robots" content="index, follow" />
  9. {% endif %}
  10. {% if seo.keywords is defined %}
  11.     <meta name="keywords" content="{{ seo.keywords }}" />
  12. {% endif %}
  13. {% if seo.tags is defined %}
  14.     {% for tag in seo.tags %}
  15.         <meta content="{{ tag.n }}" property="article:tag"/>
  16.     {% endfor %}
  17. {% endif %}
  18. {% if seo.title is defined %}
  19.     <meta property="og:title" content="{{ seo.title }}" />
  20.     <meta property="twitter:title" content="{{ seo.title|slice(0, 70) }}" />
  21.     <title>{{ seo.title }}</title>
  22. {% endif %}
  23. {% if seo.description is defined %}
  24.     <meta name="description" content="{{ seo.description|striptags|slice(0, 160) }}" />
  25.     <meta property="og:description" itemprop="description" content="{{ seo.description|striptags|slice(0, 300) }}" />
  26.     <meta property="twitter:description" content="{{ seo.description|striptags|slice(0, 200) }}" />
  27. {% endif %}
  28. {% if seo.og_type is defined %}
  29.     <meta property="og:type" content="{{ seo.og_type }}" />
  30. {% endif %}
  31. {% if seo.url is defined %}
  32.     <meta property="og:url" itemprop="url" content="{{ domain ~ seo.url }}" />
  33.     <link rel="canonical" href="{{ domain ~  seo.url }}" />
  34.     {#<link rel="alternate" href="{{ mobile ~ seo.url }}" media="only screen and (max-width: 640px)" />#}
  35.     {#<link rel="alternate" href="{{ mobile ~ seo.url }}" media="handheld" />#}
  36. {% endif %}
  37. <meta property="twitter:card" content="summary" />
  38. <meta name="twitter:site" content="@indiangame" />
  39. {% if seo.image is defined %}
  40.     <meta property="og:image" content="{{ seo.image }}" />
  41.     <meta property="og:image:secure_url" content="{{ seo.image }}" />
  42.     <meta property="og:image:width" content="620" />
  43.     <meta property="og:image:height" content="324" />
  44.     <meta property="twitter:image" content="{{ seo.image }}" />
  45.     <meta property="twitter:image:secure_url" content="{{ seo.image }}" />
  46.     <meta property="twitter:image:width" content="620" />
  47.     <meta property="twitter:image:height" content="324" />
  48. {% endif %}
  49. {% if seo.article_tag is defined %}
  50.     <meta property="article:tag" content="{{ seo.article_tag }}" />
  51. {% endif %}
  52. {% if seo.article_category is defined %}
  53.     <meta property="article:section" content="{{ seo.article_category }}" />
  54. {% endif %}
  55. {% if seo.publish_time is defined %}
  56.     <meta property="article:published_time" content="{{ seo.publish_time }}" />
  57. {% endif %}
  58. {#{% if seo.amp is defined %}
  59.     {% if seo.ampUrl is defined %}
  60.         <link rel="amphtml" href="{{ domain ~ seo.ampUrl }}" />
  61.     {% else %}
  62.         <link rel="amphtml" href="{{ domain ~ seo.url }}/amp" />
  63.     {% endif %}
  64. {% endif %}#}
  65. {% if seo.prev_url is defined %}
  66. <link rel="prev" href="{{ seo.prev_url }}" />
  67. {% endif %}
  68. {% if seo.next_url is defined %}
  69. <link rel="next" href="{{ seo.next_url }}" />
  70. {% endif %}
  71. <link rel="alternate" type="application/rss+xml" href="{{ domain }}/feed" title="{{ seo.siteName }} &raquo; Feed" />
  72. {% if seo.rss is defined and seo.rss is not empty %}
  73.     <link rel="alternate" type="application/rss+xml" href="{{ domain ~ seo.rss }}" title="{{ seo.title }} &raquo; Feed" />
  74. {% endif %}
  75. {# do chua co domain nen tam thoi chua dung #}
  76. {#{% if seo.is_home is defined and seo.is_home %}#}
  77.     {#<script type='application/ld+json'>{"@context":"https:\/\/schema.org","@type":"WebSite","@id":"#website","url":"https:\/\/indianautosblog.com\/","name":"Indian Autos blog","potentialAction":{"@type":"SearchAction","target":"https:\/\/indianautosblog.com\/?s={search_term_string}","query-input":"required name=search_term_string"}}</script>#}
  78. {#{% endif %}#}
  79. {#{% if seo.tag_json is defined and seo.tag_json %}#}
  80. {#<script type='application/ld+json'>{"@context":"https:\/\/schema.org","@type":"Organization","url":"https:\/\/indianautosblog.com\/","sameAs":["https:\/\/www.facebook.com\/IndianAutosBlog","https:\/\/www.instagram.com\/indianautosblog\/","https:\/\/www.youtube.com\/IndianAutosBlog","https:\/\/www.pinterest.com\/IndianAutosBlog\/","https:\/\/twitter.com\/indianautos"],"@id":"https:\/\/indianautosblog.com\/#organization","name":"Indian Autos Blog","logo":"https:\/\/img.indianautosblog.com\/2017\/07\/Logo.png"}</script>#}
  81. {#{% endif %}#}