Artist, stream pages, menu, index song listing

- Fixed song listing on artist pages
- Fixed artist page generation
- Sorted artist listing
- Added menu and moved displayed titles to the template
- Linking songs from artist pages
- Added a page for streams and collected the data for it manually
- Implemented Popular and Hidden Songs on the index page
- Bunch of fixes of URLs and such
This commit is contained in:
Norbi Peti 2019-06-13 01:15:12 +02:00
parent 369362b87b
commit 4024ebe455
No known key found for this signature in database
GPG key ID: DBA4C4549A927E56
15 changed files with 250 additions and 52 deletions

View file

@ -1,5 +0,0 @@
---
name: Artist1
position: Singer
---
Test artist

View file

@ -1,6 +0,0 @@
---
short_name: test
name: Test
position: Producer
---
Test artist

View file

@ -19,5 +19,5 @@ page_gen:
template: song
name: sname
- data: artists
template: song
name: sid
template: artist
name: sname

8
_data/navigation.yml Normal file
View file

@ -0,0 +1,8 @@
- name: Home
link:
- name: Artists
link: artists.html
- name: FAQ
link: faq.html
- name: Streams
link: streams.html

117
_data/streams.yml Normal file
View file

@ -0,0 +1,117 @@
- date: '2019-01-24'
host: 'Voicians'
streamer: 'Anna Yvette'
live: true
- date: '2019-01-31'
host: '!Roundup'
streamer: 'Anna Yvette'
- date: '2019-02-07'
host: '!Throwback'
streamer: 'Anna Yvette'
throwbackHost: 'Sublab'
- date: '2019-02-14'
host: 'Rameses B'
streamer: 'Anna Yvette'
- date: '2019-02-21'
host: '!Throwback'
streamer: 'Approaching Nirvana'
throwbackHost: 'Laura Brehm, Arc North, Rival'
- date: '2019-02-28'
host: '!Roundup'
streamer: 'Approaching Nirvana'
- date: '2019-03-05'
host: '!Chill'
streamer: 'Anna Yvette'
- date: '2019-03-07'
host: 'Approaching Nirvana'
streamer: 'Approaching Nirvana'
- date: '2019-03-12'
host: '!Chill'
streamer: 'Anna Yvette'
- date: '2019-03-14'
host: '!Throwback'
streamer: 'Anna Yvette'
throwbackHost: 'floatinurboat'
- date: '2019-03-19'
host: '!Chill'
streamer: 'Anna Yvette'
- date: '2019-03-21'
host: '!Throwback'
streamer: 'Anna Yvette'
throwbackHost: 'CASHFORGOLD'
- date: '2019-03-26'
host: '!Chill'
streamer: 'Anna Yvette'
- date: '2019-03-28'
host: 'Varien'
streamer: 'Anna Yvette'
- date: '2019-04-02'
host: '!Chill'
streamer: 'Anna Yvette'
- date: '2019-04-04'
host: 'Au5'
streamer: 'Approaching Nirvana'
- date: '2019-04-09'
host: '!Chill'
streamer: 'Anna Yvette'
- date: '2019-04-11'
host: 'Veela'
streamer: 'Approaching Nirvana'
- date: '2019-04-16'
host: '!Chill'
streamer: 'Anna Yvette'
- date: '2019-04-18'
host: 'AK'
streamer: 'Approaching Nirvana'
- date: '2019-04-23'
host: '!Chill'
streamer: 'Anna Yvette'
- date: '2019-04-25'
host: '!Throwback'
streamer: 'Approaching Nirvana'
throwbackHost: 'Arc North'
- date: '2019-04-30'
host: '!Chill'
streamer: 'Anna Yvette'
- date: '2019-05-02'
host: 'Lucy Daydream'
streamer: 'Lucy Daydream'
- date: '2019-05-07'
host: '!Chill'
streamer: 'Anna Yvette'
- date: '2019-05-09'
host: '!Roundup'
streamer: 'Cara Leigh'
- date: '2019-05-14'
host: '!Chill'
streamer: 'Cara Leigh'
- date: '2019-05-16'
host: 'Covex'
streamer: 'Anna Yvette'
- date: '2019-05-21'
host: '!Chill'
streamer: 'Anna Yvette'
- date: '2019-05-23'
host: 'Laura Brehm'
streamer: 'Anna Yvette'
- date: '2019-05-28'
host: '!Chill'
streamer: 'Anna Yvette'
- date: '2019-05-30'
host: 'Zoe Moon'
streamer: 'Anna Yvette'
- date: '2019-06-04'
host: '!Chill'
streamer: 'Anna Yvette'
- date: '2019-06-06'
host: '!Roundup'
streamer: 'Anna Yvette'
- date: '2019-06-11'
host: '!Chill'
streamer: 'Cara Leigh'
- date: '2019-06-13'
host: 'Au5'
- date: '2019-06-20'
host: 'Sublab'
- date: '2019.06.27'
host: 'Miyoki'

View file

@ -2,17 +2,18 @@
<p>
{%- assign isFirst = true -%}
{%- for artistName in song.artists -%}
{%- if isFirst == true -%}
{%- assign isFirst = false -%}
{%- else -%}, {% comment %} Comma and space to separate artists {% endcomment %}
{%- endif -%}
{%- assign artist = site.artists | where: 'name', artistName | first -%}
{%- if artist -%}
<a href="{{ artist.url | prepend: site.baseurl }}">{{ artist.name }}</a>
{%- else -%}
{{ artistName }}
{%- endif -%}
{%- if isFirst == true -%}
{%- assign isFirst = false -%}
{%- else -%}
, {% comment %} Comma and space to separate artists {% endcomment %}
{%- endif -%}
{%- assign artist = site.data.artists | where: 'sname', artistName | first -%}
{%- if artist -%}
<a href="{{ artist.sname | datapage_url: 'artists' }}">{{ artist.sname }}</a>
{%- else -%}
{{ artistName }}
{%- endif -%}
{%- endfor -%}
{% comment %} Space needed {% endcomment %} - <a href="{{ song.url }}">{{ song.name }}</a>
{% comment %} Space needed {% endcomment %} - <a href="{{ site.baseurl }}/{{ song.sname | datapage_url: 'songs' }}">{{ song.sname }}</a>
</p>
</div>

View file

@ -1,16 +1,21 @@
---
layout: default
title: page.name
ptitle: '{{ page.sname }}'
---
<h1>{{ page.name }}</h1>
<h2>{{ page.position }}</h2>
{{ content }}
<h2>Songs</h2>
<ul>
{% assign filtered_songs = site.data.songs | where: 'artist', page.name %}
{% assign filtered_songs = site.data.songs %}
{% for song in filtered_songs %}
<li><a href="{{ song.url }}">{{ song.artist }} - {{ song.title }}</a></li>
{% assign found = false %}
{% for artist in song.artists %}
{% if artist == page.sname %}
{% assign found = true %}
{% endif %}
{% endfor %}
{% if found == false %} {% continue %} {% endif %}
<li><a href="{{ site.baseurl }}/songs{{ song.sname | datapage_url: songs }}">{{ song.artists | join: ", " }} - {{ song.sname }}</a></li>
{% endfor %}
</ul>

View file

@ -2,25 +2,36 @@
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>{{ page.title }} - HS Fanpage</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title>{{ page.title }} - HS Fanpage</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="{{ site.baseurl }}/icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="shortcut icon" type="image/x-icon" href="{{ site.baseurl }}/favicon.ico" />
<link rel="apple-touch-icon" href="{{ site.baseurl }}/icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="shortcut icon" type="image/x-icon" href="{{ site.baseurl }}/favicon.ico"/>
<link rel="stylesheet" href="{{ site.baseurl }}/css/main.css">
<link rel="stylesheet" href="{{ site.baseurl }}/css/main.css">
<meta name="theme-color" content="#fafafa">
<meta name="theme-color" content="#fafafa">
</head>
<body>
<div class="bg-image"></div>
<!--[if IE]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<h1>{{ page.ptitle | flatify }}</h1>
<nav>
<ul>
{% for item in site.data.navigation %}
<li><a href="{{ site.baseurl }}/{{ item.link }}" {% if page.url== item.link %} style="color: red;" {% endif %}>
{{ item.name }}
</a></li>
{% endfor %}
</ul>
</nav>
<!--[if IE]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade
your browser</a> to improve your experience and security.</p>
<![endif]-->
{{ content }}
</body>

View file

@ -1,5 +1,5 @@
---
layout: default
title: asd
ptitle: '{{ page.artists | join: ", " }} - {{ page.sname }}'
---
<h1>{{ page.artists | join: ", " }} - {{ page.sname }}</h1>

View file

@ -0,0 +1,11 @@
# http://acegik.net/blog/ruby/jekyll/plugins/howto-nest-liquid-template-variables-inside-yaml-front-matter-block.html
module Jekyll
module ExpandNestedVariableFilter
def flatify(input)
Liquid::Template.parse(input).render(@context)
end
end
end
Liquid::Template.register_filter(Jekyll::ExpandNestedVariableFilter)

View file

@ -1,12 +1,12 @@
---
title: Artists
ptitle: Artists
---
<h1>Artists</h1>
<ul>
{% for artist in site.artists %}
{% assign artists = site.data.artists | sort: 'sname' %}
{% for artist in artists %}
<li>
<h2>{{ artist.name }}</h2>
<h2><a href="{{ site.baseurl }}/{{ artist.sname | datapage_url: 'artists' }}">{{ artist.sname }}</a></h2>
<h3>{{ artist.position }}</h3>
<p>{{ artist.content | markdownify }}</p>
</li>

View file

@ -49,4 +49,28 @@ h1 {
.content {
/*background-color: #1f2523;*/
}
}
nav ul { /* Menü */
list-style-type: none;
margin: auto;
display: table;
}
nav li {
display: inline-block;
}
nav li a {
display: block;
color: white;
text-align: center;
padding: 20px 20px;
text-decoration: none;
font-weight: bold;
height: 23px;
}
nav li a:hover {
color: aqua;
}

2
faq.md
View file

@ -1,7 +1,7 @@
---
title: FAQ
ptitle: Frequently Asked Questions
---
# Frequently Asked Questions
## What is Hidden Sounds?
Hidden Sounds is a group of independent artists joining together to support 100% independent releases.

View file

@ -1,20 +1,24 @@
---
layout: default
title: Hidden Sounds
ptitle: Hidden Sounds Unofficial (Fan) Website
---
<h1>Hidden Sounds Unofficial (Fan) Website</h1>
<div id="popularSongs" class="content">
<h2>Popular Songs</h2>
<div id="popularContainer">
{% for song in site.data.songs %}
{% include songlist.html %}
{% assign popularSongs = site.data.songs | sort: 'popularity' | reverse %}
{% for song in popularSongs %}
{% if forloop.index > 10 %} {% break %} {% endif %}
{% include songlist.html %}
{% endfor %}
</div>
</div>
<div id="hiddenSongs" class="content">
<h2>Hidden Songs</h2>
<div id="hiddenContainer">
{% for song in site.data.songs %}
{% assign hiddenSongs = site.data.songs | sort: 'popularity' %}
{% for song in hiddenSongs %}
{% if forloop.index > 10 %} {% break %} {% endif %}
{% include songlist.html %}
{% endfor %}
</div>

28
streams.html Normal file
View file

@ -0,0 +1,28 @@
---
title: Streams
ptitle: Streams
---
<ul>
{% assign streams = site.data.streams | reverse %}
{% for stream in streams %}
<li>
<h2>
{%- if stream.host == '!Chill' -%} Tuesday Chill Stream
{%- elsif stream.host == '!Throwback' -%} Throwback: {{ stream.throwbackHost }}
{%- elsif stream.host == '!Roundup' -%} Monthly Roundup
{%- else -%} {{- stream.host -}}
{%- endif -%}
{% if stream.live %} - LIVE {%- endif -%}
</h2>
</li>
<li>
{{ stream.date | date: "%a, %b %d, %Y" }}
</li>
{%- if stream.streamer -%} {% comment %} No streamer for future streams {% endcomment %}
<li>
Streamer: {{ stream.streamer }}
</li>
{%- endif -%}
{% endfor %}
</ul>