seo artist list

This commit is contained in:
sakrecoer 2020-07-06 18:38:46 +02:00
parent 1ac70b8637
commit d31e9810dd

View file

@ -53,10 +53,12 @@
{% elsif page.collection == 'albums' %} {% elsif page.collection == 'albums' %}
<!-- BEGIN seo.html --> <!-- BEGIN seo.html -->
{% capture namelist %}{% for art in page.artists %}{{ art }}{% unless forloop.last %}, {% endunless %}{% endfor %}{% endcapture %}
{% capture artist %}{{ namelist }}{% endcapture %}
<title>Play &quot;{{ page.name }}&quot; by {{ page.artists }} | {{ site.title }}</title> <title>Play &quot;{{ page.name }}&quot; by {{ artist | uniq }} | {{ site.title }}</title>
<meta name="title" content="Play &quot;{{ page.name | strip_html }}&quot; by {{ page.artists }}" /> <meta name="title" content="Play &quot;{{ page.name | strip_html }}&quot; by {{ artist | uniq }}" />
<meta name="description" content="A release by {{ page.artists }} named &quot;{{ page.name | strip_html }}&quot; published on {{ site.title }}" /> <meta name="description" content="A release by {{ artist | uniq }} named &quot;{{ page.name | strip_html }}&quot; published on {{ site.title }}" />
<meta name="dc.date.modified" scheme="ISO8601" content="{{ page.last_modified_at | date_to_xmlschema }}" /> <meta name="dc.date.modified" scheme="ISO8601" content="{{ page.last_modified_at | date_to_xmlschema }}" />
<meta name="robots" content="index" /> <meta name="robots" content="index" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
@ -78,17 +80,17 @@
<meta name="dcterms.Type" content="text/html" /> <meta name="dcterms.Type" content="text/html" />
<meta name="dcterms.Coverage" content="{{ site.url }}/" /> <meta name="dcterms.Coverage" content="{{ site.url }}/" />
<meta name="dcterms.Rights" content="Copyright &copy;{{ site.time | date: '%Y' }} {{ site.title }}." /> <meta name="dcterms.Rights" content="Copyright &copy;{{ site.time | date: '%Y' }} {{ site.title }}." />
<meta name="dcterms.Subject" content="A release by {{ page.artists }} named &quot;{{ page.name | strip_html }}&quot; published on {{ site.title }}" /> <meta name="dcterms.Subject" content="A release by {{ artist | uniq }} named &quot;{{ page.name | strip_html }}&quot; published on {{ site.title }}" />
<meta name="dcterms.Title" content="Play &quot;{{ page.name | strip_html }}&quot; by {{ page.artists }}" /> <meta name="dcterms.Title" content="Play &quot;{{ page.name | strip_html }}&quot; by {{ artist | uniq }}" />
<meta name="dcterms.Contributor" content="{{ site.title }}" /> <meta name="dcterms.Contributor" content="{{ site.title }}" />
<meta name="dcterms.Date" content="{{ page.last_modified_at | date: '%Y-%m-%d' }}" /> <meta name="dcterms.Date" content="{{ page.last_modified_at | date: '%Y-%m-%d' }}" />
<meta name="dcterms.Description" content="Listen and to a release by {{ page.artists | strip_html }} named &quot;{{ page.name | strip_html }}&quot; and support your remote artist!" /> <meta name="dcterms.Description" content="Listen and to a release by {{ artist | uniq }} named &quot;{{ page.name | strip_html }}&quot; and support your remote artist!" />
<!-- Facebook --> <!-- Facebook -->
<meta property="og:title" content="{{ page.name }} by {{ page.artists }}" /> <meta property="og:title" content="{{ page.name }} by {{ artist | uniq }}" />
<meta property="og:locale" content="en" /> <meta property="og:locale" content="en" />
<meta property="og:description" content="Listen and to a release by {{ page.artists | strip_html }} named &quot;{{ page.name | strip_html }}&quot; and support your remote artist!" /> <meta property="og:description" content="Listen and to a release by {{ artist | uniq }} named &quot;{{ page.name | strip_html }}&quot; and support your remote artist!" />
<meta property="og:url" content="{{ site.url }}{{ page.url }}" /> <meta property="og:url" content="{{ site.url }}{{ page.url }}" />
<meta property="og:site_name" content="{{ site.title }}" /> <meta property="og:site_name" content="{{ site.title }}" />
<meta property="og:type" content="music:album" /> <meta property="og:type" content="music:album" />
@ -100,7 +102,7 @@
<meta name="twitter:card" content="summary" /> <meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="{{ page.name }} | {{ site.title }}" /> <meta name="twitter:title" content="{{ page.name }} | {{ site.title }}" />
<meta name="twitter:description" content="Listen and to a release by {{ page.artists | strip_html }} named &quot;{{ page.name | strip_html }}&quot; and support your remote artist!" /> <meta name="twitter:description" content="Listen and to a release by {{ artist | uniq }} named &quot;{{ page.name | strip_html }}&quot; and support your remote artist!" />
<meta name="twitter:image" content="https://media.basspistol.com/panix/{{ page.tracks[0].slug }}.jpeg" /> <meta name="twitter:image" content="https://media.basspistol.com/panix/{{ page.tracks[0].slug }}.jpeg" />
<!-- END seo.html --> <!-- END seo.html -->