Initial commit
This commit is contained in:
commit
6a348db52f
471 changed files with 76070 additions and 0 deletions
50
_includes/seo.html
Normal file
50
_includes/seo.html
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
<!-- BEGIN seo.html -->
|
||||
{% if page.collection == 'tracks' %}
|
||||
<title>Play {{ page.common.title | strip_html }} by {{ page.common.artist | strip_html }}</title>
|
||||
<meta name="title" content="Play {{ page.common.title | strip_html }} by {{ page.common.artist | strip_html }}" />
|
||||
{% else %}
|
||||
<title>{{ page.title | strip_html }} | {{ site.title | strip_html }}</title>
|
||||
<meta name="title" content="{{ page.title | strip_html }} | {{ site.title | strip_html }}" />
|
||||
{% endif %}
|
||||
<meta name="dc.date.modified" scheme="ISO8601" content="{{ page.last_modified_at | date_to_xmlschema }}" />
|
||||
<meta name="robots" content="index" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="canonical" href="{{ site.url }}{{ page.url }}" />
|
||||
<link rel="alternate" hreflang="x-default" href="{{ site.url }}{{ page.url }}" />
|
||||
<meta name="geo.region" content="{{ site.geo.region }}" />
|
||||
<meta name="geo.placename" content="{{ site.geo.town }}" />
|
||||
<meta name="geo.position" content="{{ site.geo.lat }};{{ site.geo.long }}" />
|
||||
<meta name="ICBM" content="{{ site.geo.lat }}, {{ site.geo.long }}" />
|
||||
|
||||
<!-- Dublin Core basic info -->
|
||||
|
||||
<meta name="dcterms.Identifier" content="{{ site.url }}" />
|
||||
<meta name="dcterms.Format" content="text/html" />
|
||||
<meta name="dcterms.Relation" content="{{ site.title }}" />
|
||||
<meta name="dcterms.Publisher" content="{{ site.title }}" />
|
||||
<meta name="dcterms.Type" content="text/html" />
|
||||
<meta name="dcterms.Coverage" content="{{ site.url }}/" />
|
||||
<meta name="dcterms.Rights" content="Copyright ©{{ site.time | date: '%Y' }} {{ site.title }}." />
|
||||
{% if page.collection == 'tracks' %}
|
||||
<meta name="dcterms.Subject" content="Listen and to a track by {{ page.common.artist | strip_html }} from the release {{ page.common.album | strip_html }} and support your remote artist!" />
|
||||
<meta name="dcterms.Title" content="{{ page.common.title | strip_html }} - {{ page.common.artist | strip_html }} | {{ site.title | strip_html }}" />
|
||||
{% else %}
|
||||
<meta name="dcterms.Subject" content="{{ site.description | strip_html }}" />
|
||||
<meta name="dcterms.Title" content="{{ page.title }} | {{ site.title }}" />
|
||||
{% endif %}
|
||||
<meta name="dcterms.Contributor" content="{{ site.title }}" />
|
||||
{% if page.date == null %}<meta name="dcterms.Date" content="{{ site.time | date: '%Y-%m-%d' }}" />{% else %}<meta name="dcterms.Date" content="{{ page.date | date: '%Y-%m-%d' }}" />{% endif %}
|
||||
<meta name="dcterms.Description" content="{{ page.description | strip_html }}" />
|
||||
|
||||
<!-- Twitter Card -->
|
||||
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@{{ site.author.twitter }}" />
|
||||
<meta name="twitter:title" content="{{ page.title }} | {{ site.title }}" />
|
||||
<meta name="twitter:description" content="{{ site.description | strip_html }}" />
|
||||
{% if page.collection == 'tracks' %}
|
||||
<meta name="twitter:image" content="{{ site.url }}{{ page.cover }}" />
|
||||
{% else %}
|
||||
<meta name="twitter:image" content="{{ site.url }}{{ page.image }}" />
|
||||
{% endif %}
|
||||
<!-- END seo.html -->
|
||||
Loading…
Add table
Add a link
Reference in a new issue