name convention
This commit is contained in:
parent
f91dc2379f
commit
32eab1c102
|
@ -53,12 +53,12 @@
|
||||||
<meta property="og:title" content="{{ page.title }} | {{ site.title }}" />{% if page.description == null %}
|
<meta property="og:title" content="{{ page.title }} | {{ site.title }}" />{% if page.description == null %}
|
||||||
<meta property="og:description" content="{{ site.tagline | strip_html }}" />{% else %}
|
<meta property="og:description" content="{{ site.tagline | strip_html }}" />{% else %}
|
||||||
<meta property="og:description" content="{{ page.description | strip_html }}" />{% endif %}{% if page.image == null %}
|
<meta property="og:description" content="{{ page.description | strip_html }}" />{% endif %}{% if page.image == null %}
|
||||||
<meta property="og:image" content="{{ site.production_url }}/assets/vid/{{ page.poster }}" />{% elsif page.poster == null %}
|
<meta property="og:image" content="{{ site.production_url }}{{ page.poster_image }}" />{% elsif page.poster_image == null %}
|
||||||
<meta property="og:image" content="{{ site.production_url }}{{ site.banner }}" />
|
<meta property="og:image" content="{{ site.production_url }}{{ site.banner }}" />
|
||||||
<meta property="og:image:type" content="image/jpeg" />
|
<meta property="og:image:type" content="image/jpeg" />
|
||||||
<meta property="og:image:width" content="1024" />
|
<meta property="og:image:width" content="1024" />
|
||||||
<meta property="og:image:height" content="1024" /> {% else %}
|
<meta property="og:image:height" content="1024" /> {% else %}
|
||||||
<meta property="og:image" content="{{ site.production_url }}/assets/vid/{{ page.image }}" />{% endif %}
|
<meta property="og:image" content="{{ site.production_url }}{{ page.image }}" />{% endif %}
|
||||||
<meta property="og:site_name" content="{{ site.title }}" />
|
<meta property="og:site_name" content="{{ site.title }}" />
|
||||||
{% for social_id in site.social_ids %}{% assign social = site.social[social_id] %}<meta property="og:see_also" content="{{ social }}" />
|
{% for social_id in site.social_ids %}{% assign social = site.social[social_id] %}<meta property="og:see_also" content="{{ social }}" />
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
|
@ -55,8 +55,8 @@
|
||||||
<meta property="og:title" content="{{ page.title }} | {{ site.title }}" />{% if page.description == null %}
|
<meta property="og:title" content="{{ page.title }} | {{ site.title }}" />{% if page.description == null %}
|
||||||
<meta property="og:description" content="{{ site.tagline | strip_html }}" />{% else %}
|
<meta property="og:description" content="{{ site.tagline | strip_html }}" />{% else %}
|
||||||
<meta property="og:description" content="{{ page.description | strip_html }}" />{% endif %}{% if page.image == null %}
|
<meta property="og:description" content="{{ page.description | strip_html }}" />{% endif %}{% if page.image == null %}
|
||||||
<meta property="og:image" content="{{ site.production_url }}/assets/vid/{{ page.poster }}" />{% elsif page.category == "highlights" %}
|
<meta property="og:image" content="{{ site.production_url }}{{ page.poster_image }}" />{% elsif page.category == "highlights" %}
|
||||||
<meta property="og:image" content="{{ site.production_url }}/assets/img/thumb/{{ page.image }}" />{% else %}
|
<meta property="og:image" content="{{ site.production_url }}{{ page.image }}" />{% else %}
|
||||||
<meta property="og:image" content="{{ site.production_url }}{{ site.banner }}" />
|
<meta property="og:image" content="{{ site.production_url }}{{ site.banner }}" />
|
||||||
<meta property="og:image:type" content="image/jpeg" />
|
<meta property="og:image:type" content="image/jpeg" />
|
||||||
<meta property="og:image:width" content="1024" />
|
<meta property="og:image:width" content="1024" />
|
||||||
|
@ -72,7 +72,7 @@
|
||||||
<meta name="twitter:title" content="{{ page.title }} | {{ site.title }}" />{% if page.description == null %}
|
<meta name="twitter:title" content="{{ page.title }} | {{ site.title }}" />{% if page.description == null %}
|
||||||
<meta name="twitter:description" content="{{ site.tagline | strip_html }}" />{% else %}
|
<meta name="twitter:description" content="{{ site.tagline | strip_html }}" />{% else %}
|
||||||
<meta name="twitter:description" content="{{ page.description | strip_html }}" />{% endif %}{% if page.image == null %}
|
<meta name="twitter:description" content="{{ page.description | strip_html }}" />{% endif %}{% if page.image == null %}
|
||||||
<meta name="twitter:image" content="{{ site.production_url }}/assets/vid/{{ page.poster }}" />{% elsif page.category == "highlights" %}
|
<meta name="twitter:image" content="{{ site.production_url }}{{ page.poster_image }}" />{% elsif page.category == "highlights" %}
|
||||||
<meta name="twitter:image" content="{{ site.production_url }}/assets/img/thumb/{{ page.image }}" />{% else %}
|
<meta name="twitter:image" content="{{ site.production_url }}/assets/img/thumb/{{ page.image }}" />{% else %}
|
||||||
<meta name="twitter:image" content="{{ site.production_url }}{{ site.banner }}" />{% endif %}
|
<meta name="twitter:image" content="{{ site.production_url }}{{ site.banner }}" />{% endif %}
|
||||||
|
|
||||||
|
@ -169,7 +169,7 @@
|
||||||
{% if page.description == null %}"description": "{{ site.tagline | strip_html }}",{% else %}"description": "{{ page.description | strip_html }}",{% endif %}
|
{% if page.description == null %}"description": "{{ site.tagline | strip_html }}",{% else %}"description": "{{ page.description | strip_html }}",{% endif %}
|
||||||
"image": {
|
"image": {
|
||||||
"@type": "ImageObject", {% if page.image == null %}
|
"@type": "ImageObject", {% if page.image == null %}
|
||||||
"url": "{{ site.production_url }}/assets/vid/{{ page.poster }}"{% elsif page.category == "highlights" %}
|
"url": "{{ site.production_url }}{{ page.poster_image }}"{% elsif page.category == "highlights" %}
|
||||||
"url": "{{ site.production_url }}/assets/img/thumb/{{ page.image }}"{% else %}
|
"url": "{{ site.production_url }}/assets/img/thumb/{{ page.image }}"{% else %}
|
||||||
"url": "{{ site.production_url }}{{ site.banner }}",
|
"url": "{{ site.production_url }}{{ site.banner }}",
|
||||||
"width": "1024",
|
"width": "1024",
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<video poster="{{ base }}/assets/vid/{{ page.poster }}" id="bgvid" autoplay playsinline muted loop>
|
<video poster="{{ base }}{{ page.poster_image }}" id="bgvid" autoplay playsinline muted loop>
|
||||||
<source src="{{ base }}/assets/vid/{{ page.video }}" type="video/mp4">
|
<source src="{{ base }}{{ page.video_path }}" type="video/mp4">
|
||||||
</video>
|
</video>
|
||||||
<img id="bgpic" src="{{ base }}/assets/vid/{{ page.poster }}" alt="Basspistol" />
|
<img id="bgpic" src="{{ base }}{{ page.poster_image }}" alt="Basspistol" />
|
||||||
<div id="headline"><h1>~/{{ page.subtitle }}</h1></div>
|
<div id="headline"><h1>~/{{ page.subtitle }}</h1></div>
|
||||||
|
|
|
@ -2,9 +2,8 @@
|
||||||
title: About The Syndicate
|
title: About The Syndicate
|
||||||
subtitle: About
|
subtitle: About
|
||||||
description: 'The Basspistol DNA'
|
description: 'The Basspistol DNA'
|
||||||
video: intro_loop_.mp4
|
video_path: /assets/vid/intro_loop_.mp4
|
||||||
poster: intro_loop_.png
|
poster_image: /assets/vid/intro_loop_.png
|
||||||
thumb: intro_loop_.png
|
|
||||||
layout: default
|
layout: default
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -3,9 +3,8 @@ title: Basspistol Artists
|
||||||
subtitle: Roster
|
subtitle: Roster
|
||||||
description: 'The Basspistol roster, united powerful syndicated Artists'
|
description: 'The Basspistol roster, united powerful syndicated Artists'
|
||||||
keywords: basspistol, artists, rosters, Franky, Fresco, Jokko, Sakrecoer, Max Park, Fraglebay, Sweatsky, Tikov
|
keywords: basspistol, artists, rosters, Franky, Fresco, Jokko, Sakrecoer, Max Park, Fraglebay, Sweatsky, Tikov
|
||||||
video: artists.mp4
|
video_path: /assets/vid/artists.mp4
|
||||||
poster: artists.jpg
|
poster_image: /assets/vid/artists.jpg
|
||||||
thumb: artists.jpg
|
|
||||||
---
|
---
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
|
|
|
@ -3,9 +3,8 @@ title: Discography
|
||||||
subtitle: Discog
|
subtitle: Discog
|
||||||
description: 'Our collection of Creative Commons licensed releases. Open culture''s finest'
|
description: 'Our collection of Creative Commons licensed releases. Open culture''s finest'
|
||||||
keywords: Discography, Releases, Music, Full-length, Albums, EP
|
keywords: Discography, Releases, Music, Full-length, Albums, EP
|
||||||
video: discogs.mp4
|
video_path: /assets/vid/discogs.mp4
|
||||||
poster: discogs.png
|
poster_image: /assets/vid/discogs.png
|
||||||
thumb: discogs.png
|
|
||||||
---
|
---
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
|
|
|
@ -3,9 +3,8 @@ title: Highlights
|
||||||
subtitle: Hi-Lights
|
subtitle: Hi-Lights
|
||||||
description: 'Links to secret music, infamous articles, forbiden videos, off the record interviews and much more...'
|
description: 'Links to secret music, infamous articles, forbiden videos, off the record interviews and much more...'
|
||||||
keywords: Music, News, blog, Interviews, links, promotion,
|
keywords: Music, News, blog, Interviews, links, promotion,
|
||||||
video: highlights.mp4
|
video_path: /assets/vid/highlights.mp4
|
||||||
poster: highlights.png
|
poster_image: /assets/vid/highlights.png
|
||||||
thumb: highlights.png
|
|
||||||
permalink: /highlights/
|
permalink: /highlights/
|
||||||
pagination:
|
pagination:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -5,9 +5,8 @@ description: 'Homepage of Basspistol, The Outernational Music Syndicate establis
|
||||||
keywords: >-
|
keywords: >-
|
||||||
Basspistol, Outernational, Music, Syndicate, Homepage, Collective, Free,
|
Basspistol, Outernational, Music, Syndicate, Homepage, Collective, Free,
|
||||||
Culture,
|
Culture,
|
||||||
video: intro_loop_.mp4
|
video_path: /assets/vid/intro_loop_.mp4
|
||||||
poster: intro_loop_.png
|
poster_image: /assets/vid/intro_loop_.png
|
||||||
thumb: intro_loop_.png
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
|
|
@ -3,9 +3,8 @@ title: Links
|
||||||
subtitle: Links
|
subtitle: Links
|
||||||
description: 'Venture outside of your daily web-routine, read about some real projects. These links are way more than just Friends and Resources'
|
description: 'Venture outside of your daily web-routine, read about some real projects. These links are way more than just Friends and Resources'
|
||||||
keywords: Links, music, record, labels, resources, friends
|
keywords: Links, music, record, labels, resources, friends
|
||||||
video: links.mp4
|
video_path: /assets/vid/links.mp4
|
||||||
poster: links.png
|
poster_image: /assets/vid/links.png
|
||||||
thumb: links.png
|
|
||||||
---
|
---
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
|
|
|
@ -3,9 +3,8 @@ title: Basspistol Libre Radio
|
||||||
subtitle: Radio
|
subtitle: Radio
|
||||||
description: "Basspistol Radio Station! 777% without commercials! RobotDJ-sets and live interventions!"
|
description: "Basspistol Radio Station! 777% without commercials! RobotDJ-sets and live interventions!"
|
||||||
keywords: Radio, basspistol, Live, Music, Broadcast, Stream,
|
keywords: Radio, basspistol, Live, Music, Broadcast, Stream,
|
||||||
video: radio.mp4
|
video_path: /assets/vid/radio.mp4
|
||||||
poster: radio.png
|
poster_image: /assets/vid/radio.png
|
||||||
thumb: radio.png
|
|
||||||
---
|
---
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
|
|
|
@ -3,9 +3,8 @@ title: taxonomy page
|
||||||
subtitle: Tags
|
subtitle: Tags
|
||||||
description: 'List of post tags on Basspistol'
|
description: 'List of post tags on Basspistol'
|
||||||
keywords: Basspistol, Outernational, Music, Syndicate, Homepage, Collective, Free, Culture, Tags
|
keywords: Basspistol, Outernational, Music, Syndicate, Homepage, Collective, Free, Culture, Tags
|
||||||
video: intro_loop_.mp4
|
video_path: /assets/vid/intro_loop_.mp4
|
||||||
poster: intro_loop_.png
|
poster_image: /assets/vid/intro_loop_.png
|
||||||
thumb: intro_loop_.png
|
|
||||||
permalink: /tags/
|
permalink: /tags/
|
||||||
---
|
---
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
|
Loading…
Reference in a new issue