minimal-music-project 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_data/menu.yml +12 -1
- data/_includes/common-head.html +1 -1
- data/_includes/discography-entry-metadata.html +83 -0
- data/_includes/discography-entry.html +25 -0
- data/_includes/menu.html +14 -3
- data/_includes/read-more.html +12 -0
- data/_layouts/discography.html +10 -3
- data/_layouts/post.html +3 -4
- data/_layouts/posts_feed.html +41 -29
- data/_sass/styles/_defaults.scss +27 -1
- data/_sass/styles/_discography.scss +40 -0
- data/_sass/styles/_index.scss +2 -1
- data/_sass/styles/_menu.scss +20 -13
- data/_sass/styles/_post.scss +24 -8
- data/_sass/styles/_posts_feed.scss +2 -5
- data/_sass/variables/_colors.scss +1 -1
- data/_sass/variables/_mixins.scss +3 -3
- data/assets/audio/sample_song.mp3 +0 -0
- data/assets/img/Experimental-Glitches-Cover.png +0 -0
- data/assets/img/YyY-Cover.png +0 -0
- data/assets/img/z-is-for-zero.png +0 -0
- data/pages/about.html +4 -5
- data/pages/collaborations.html +2 -2
- metadata +10 -4
- data/_includes/avatar.html +0 -5
- data/pages/discography.html +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b0b1d1a024bc519ef5fdb0314a3799b58e12239be7da3149eca057d0f94791e1
|
4
|
+
data.tar.gz: abbfbad511137ee1760800c26b44bdb5747abe281ad46f5ae4a80dd42f416248
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b1177c34686ba44c9e74b06ce6e1a995d3d34886dadfe10931c694287a78e97af5ea4d0ca3ca28b57d00df74ad9d953fe1932487e7ba31de3b593cc03f5bcb9
|
7
|
+
data.tar.gz: d635b9d6eedc02d93a48fe4233b3eb064dc61089d46867c52f08601803d38104c3db5d8e7c0818c3c2773fe822fe7fa5003c262c0bbdebad480c2b37518808b2
|
data/_data/menu.yml
CHANGED
@@ -16,4 +16,15 @@ menu_pages:
|
|
16
16
|
- title: About
|
17
17
|
url: about.html
|
18
18
|
category: about
|
19
|
-
tooltip: This is about
|
19
|
+
tooltip: This is about
|
20
|
+
|
21
|
+
menu_contacts:
|
22
|
+
- faicon: fab fa-soundcloud
|
23
|
+
url:
|
24
|
+
target: _blank
|
25
|
+
- faicon: fab fa-twitter
|
26
|
+
url:
|
27
|
+
target: _blank
|
28
|
+
- faicon: fas fa-envelope
|
29
|
+
url:
|
30
|
+
target:
|
data/_includes/common-head.html
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ '/assets/img/favicon-16x16.png' | relative_url }}">
|
9
9
|
<link rel="manifest" href="{{ '/assets/img/site.webmanifest' | relative_url }}">
|
10
10
|
<link rel="mask-icon" href="{{ '/assets/img/safari-pinned-tab.svg'| relative_url }}" color="#5bbad5">
|
11
|
-
<link rel="shortcut icon" href="{{'
|
11
|
+
<link rel="shortcut icon" href="{{'/assets/img/favicon.ico' | relative_url }}">
|
12
12
|
<meta name="msapplication-TileColor" content="#da532c">
|
13
13
|
<meta name="msapplication-config" content="{{ '/assets/img/browserconfig.xml' | relative_url }}">
|
14
14
|
<meta name="theme-color" content="#ffffff">
|
@@ -0,0 +1,83 @@
|
|
1
|
+
<p class="discography-album_release-date">
|
2
|
+
release date: {{ include.currPost.date | date_to_long_string }}
|
3
|
+
</p>
|
4
|
+
|
5
|
+
{% if include.currPost.type %}
|
6
|
+
<p class="discography-album_type">
|
7
|
+
release type: {{ include.currPost.type }}
|
8
|
+
</p>
|
9
|
+
{% endif %}
|
10
|
+
|
11
|
+
{% assign playArray = include.currPost.play | size %}
|
12
|
+
{% if playArray != 0 %}
|
13
|
+
<p class="discography-album_play">
|
14
|
+
play:
|
15
|
+
{% for play in include.currPost.play %}
|
16
|
+
<a href="{{ play.url }}" target="_blank">{{ play.name }}</a>
|
17
|
+
{% if forloop.last == false %}
|
18
|
+
|
|
19
|
+
{% endif %}
|
20
|
+
{% endfor %}
|
21
|
+
</p>
|
22
|
+
{% endif %}
|
23
|
+
|
24
|
+
{% assign downloadArray = include.currPost.download | size %}
|
25
|
+
{% if downloadArray != 0 %}
|
26
|
+
<p class="discography-album_download">
|
27
|
+
download:
|
28
|
+
{% for download in include.currPost.download %}
|
29
|
+
<a href="{{ download.url }}" target="_blank">{{ download.name }}</a>
|
30
|
+
{% if forloop.last == false %}
|
31
|
+
|
|
32
|
+
{% endif %}
|
33
|
+
{% endfor %}
|
34
|
+
</p>
|
35
|
+
{% endif %}
|
36
|
+
|
37
|
+
{% assign buyArray = include.currPost.buy | size %}
|
38
|
+
{% if buyArray != 0 %}
|
39
|
+
<p class="discography-album_buy">
|
40
|
+
buy from:
|
41
|
+
{% for buy in include.currPost.buy %}
|
42
|
+
<a href="{{ buy.url }}" target="_blank">{{ buy.name }}</a>
|
43
|
+
{% if forloop.last == false %}
|
44
|
+
|
|
45
|
+
{% endif %}
|
46
|
+
{% endfor %}
|
47
|
+
</p>
|
48
|
+
{% endif %}
|
49
|
+
|
50
|
+
{% assign otherArray = include.currPost.other | size %}
|
51
|
+
{% if otherArray != 0 %}
|
52
|
+
<p class="discography-album_other">
|
53
|
+
other links:
|
54
|
+
{% for other in include.currPost.other %}
|
55
|
+
<a href="{{ other.url }}" target="_blank">{{ other.name }}</a>
|
56
|
+
{% if forloop.last == false %}
|
57
|
+
|
|
58
|
+
{% endif %}
|
59
|
+
{% endfor %}
|
60
|
+
</p>
|
61
|
+
{% endif %}
|
62
|
+
{% if include.currPost.play_here %}
|
63
|
+
<audio controls>
|
64
|
+
<source src="{{ include.currPost.play_here.src }}" type="{{ include.currPost.play_here.type }}">
|
65
|
+
Your browser does not support the audio element.
|
66
|
+
</audio>
|
67
|
+
{% endif %}
|
68
|
+
{% if include.currPost.play_soundcloud_embed %}
|
69
|
+
<iframe width="100%" height="166" scrolling="no" frameborder="no" allow="autoplay"
|
70
|
+
src="{{ include.currPost.play_soundcloud_embed.src }}"></iframe>
|
71
|
+
<div
|
72
|
+
style="font-size: 10px; color: #cccccc;line-break: anywhere;word-break: normal;overflow: hidden;white-space: nowrap;text-overflow: ellipsis; font-family: Interstate,Lucida Grande,Lucida Sans Unicode,Lucida Sans,Garuda,Verdana,Tahoma,sans-serif;font-weight: 100;">
|
73
|
+
<a href="{{ include.currPost.play_soundcloud_embed.artist_href }}" title="{{ include.currPost.play_soundcloud_embed.artist_title }}" target="_blank"
|
74
|
+
style="color: #cccccc; text-decoration: none;">{{ include.currPost.play_soundcloud_embed.artist_title }}</a> · <a
|
75
|
+
href="{{ include.currPost.play_soundcloud_embed.song_href }}"
|
76
|
+
title="{{ include.currPost.play_soundcloud_embed.song_title }}" target="_blank"
|
77
|
+
style="color: #cccccc; text-decoration: none;">{{ include.currPost.play_soundcloud_embed.song_title }}</a></div>
|
78
|
+
{% endif %}
|
79
|
+
{% if include.currPost.play_bandcamp_embed %}
|
80
|
+
<iframe style="border: 0; width: 100%; height: 42px;"
|
81
|
+
src="{{ include.currPost.play_bandcamp_embed.src }}"
|
82
|
+
seamless><a href="{{ include.currPost.play_bandcamp_embed.href }}">{{ include.currPost.play_bandcamp_embed.title }}</a></iframe>
|
83
|
+
{% endif %}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<article class="discography-album">
|
2
|
+
<header>
|
3
|
+
<figure class="discography-album_cover-wrapper">
|
4
|
+
<div class="discography-album_cover">
|
5
|
+
<img src="{{ include.currPost.image | relative_url }}" alt="{{ page.image_alt }}" />
|
6
|
+
</div>
|
7
|
+
</figure>
|
8
|
+
</header>
|
9
|
+
<section>
|
10
|
+
{% if include.currPost.external_url %}
|
11
|
+
<a href="{{ include.currPost.external_url | relative_url }}" target="_blank">
|
12
|
+
{% else %}
|
13
|
+
<a href="{{ include.currPost.url | relative_url }}">
|
14
|
+
{% endif %}
|
15
|
+
<h2 class="discography-album_title">
|
16
|
+
{{ include.currPost.title }}
|
17
|
+
</h2>
|
18
|
+
</a>
|
19
|
+
<p class="discography-album_summary">
|
20
|
+
{{ include.currPost.summary }}
|
21
|
+
</p>
|
22
|
+
{% include discography-entry-metadata.html currPost=include.currPost %}
|
23
|
+
</section>
|
24
|
+
{% include read-more.html currPost=include.currPost %}
|
25
|
+
</article>
|
data/_includes/menu.html
CHANGED
@@ -15,6 +15,14 @@
|
|
15
15
|
{% endfor %}
|
16
16
|
</ul>
|
17
17
|
</div>
|
18
|
+
<div class="menu-contact">
|
19
|
+
{% for contact in site.data.menu.menu_contacts %}
|
20
|
+
|
21
|
+
<a href="{{ contact.url | relative_url }}" target="{{ contact.target }}">
|
22
|
+
<i class="{{ contact.faicon }}"></i>
|
23
|
+
</a>
|
24
|
+
{% endfor %}
|
25
|
+
</div>
|
18
26
|
</aside>
|
19
27
|
|
20
28
|
<script>
|
@@ -23,9 +31,12 @@
|
|
23
31
|
const navigation = document.getElementsByClassName("navigation")[0];
|
24
32
|
const selectedCategory = navigation.getElementsByTagName("a");
|
25
33
|
const currCategory = "{{ page.category }}";
|
26
|
-
|
27
|
-
|
28
|
-
|
34
|
+
const currCategories = "{{ page.categories }}";
|
35
|
+
|
36
|
+
for(const menuItem of selectedCategory) {
|
37
|
+
const menuCategory = menuItem.getAttribute("category")
|
38
|
+
if(menuCategory === currCategory ||
|
39
|
+
menuCategory === currCategories) {
|
29
40
|
menuItem.classList.add("selected");
|
30
41
|
return;
|
31
42
|
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<span class="read-more">
|
2
|
+
{% if include.currPost.external_url %}
|
3
|
+
<a href="{{ include.currPost.external_url | relative_url }}" target="_blank">
|
4
|
+
{% else %}
|
5
|
+
<a href="{{ include.currPost.url | relative_url }}">
|
6
|
+
{% endif %} {% if include.currPost.external_name %}
|
7
|
+
Read more on {{ include.currPost.external_name }} →
|
8
|
+
{% else %}
|
9
|
+
More info →
|
10
|
+
{% endif %}
|
11
|
+
</a>
|
12
|
+
</span>
|
data/_layouts/discography.html
CHANGED
@@ -1,6 +1,13 @@
|
|
1
1
|
---
|
2
2
|
layout: default
|
3
3
|
---
|
4
|
-
<div class="
|
5
|
-
<
|
6
|
-
|
4
|
+
<div class="content-container">
|
5
|
+
<div class="discography">
|
6
|
+
{{ content }}
|
7
|
+
{% for post in site.posts %}
|
8
|
+
{% if post.categories contains page.category %}
|
9
|
+
{% include discography-entry.html currPost=post %}
|
10
|
+
{% endif %}
|
11
|
+
{% endfor %}
|
12
|
+
</div>
|
13
|
+
</div>
|
data/_layouts/post.html
CHANGED
@@ -13,13 +13,12 @@ layout: default
|
|
13
13
|
<img src="{{ page.image | relative_url }}" alt="{{ page.image_alt }}" class="post-cover_image" />
|
14
14
|
</figure>
|
15
15
|
{% endif %}
|
16
|
-
<p class="post-metadata">
|
17
|
-
{{ page.date | date_to_string }}
|
18
|
-
</p>
|
19
|
-
|
20
16
|
</header>
|
21
17
|
<div class="post-content">
|
22
18
|
{{ content }}
|
23
19
|
</div>
|
20
|
+
<div class="post-metadata">
|
21
|
+
{% include discography-entry-metadata.html currPost=page %}
|
22
|
+
</div>
|
24
23
|
</div>
|
25
24
|
</div>
|
data/_layouts/posts_feed.html
CHANGED
@@ -4,40 +4,52 @@ category: home
|
|
4
4
|
---
|
5
5
|
<div class="content-container">
|
6
6
|
<div class="post-feed">
|
7
|
+
{{ content }}
|
7
8
|
{% for post in site.posts %}
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
9
|
+
{% if post.categories contains page.category %}
|
10
|
+
<hr>
|
11
|
+
<article>
|
12
|
+
<header>
|
13
|
+
<p class="article-date">{{ post.date | date: "%Y-%m-%d" }}</p>
|
14
|
+
<h2>
|
15
|
+
{% if post.external_url %}
|
16
|
+
<a href="{{ post.external_url | relative_url }}" target="_blank">
|
17
|
+
{% else %}
|
18
|
+
<a href="{{ post.url | relative_url }}">
|
18
19
|
{% endif %}
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
20
|
+
{{ post.title }}
|
21
|
+
</a>
|
22
|
+
</h2>
|
23
|
+
</header>
|
24
|
+
<section>
|
25
|
+
<figure>
|
26
|
+
<img src="{{ post.image | relative_url }}" alt="{{ page.image_alt }}" class="post-feed_image" />
|
27
|
+
</figure>
|
28
|
+
<p>
|
29
|
+
{{ post.summary }}
|
30
|
+
</p>
|
31
|
+
</section>
|
32
|
+
{% include read-more.html currPost=include.currPost %}
|
33
|
+
</article>
|
34
|
+
{% else %}
|
35
|
+
<hr>
|
36
|
+
<article>
|
37
|
+
<header>
|
38
|
+
<p class="article-date">{{ post.date | date: "%Y-%m-%d" }}</p>
|
39
|
+
<h2>
|
40
|
+
{% if post.external_url %}
|
41
|
+
<a href="{{ post.external_url | relative_url }}" target="_blank">
|
34
42
|
{% else %}
|
35
43
|
<a href="{{ post.url | relative_url }}">
|
36
|
-
|
44
|
+
{% endif %}
|
45
|
+
New release: {{ post.title }}
|
37
46
|
</a>
|
38
|
-
|
39
|
-
|
40
|
-
{%
|
47
|
+
</h2>
|
48
|
+
</header>
|
49
|
+
{% include discography-entry.html currPost=post %}
|
50
|
+
</article>
|
51
|
+
|
52
|
+
{% endif %}
|
41
53
|
{% endfor %}
|
42
54
|
</div>
|
43
55
|
</div>
|
data/_sass/styles/_defaults.scss
CHANGED
@@ -30,7 +30,7 @@ body {
|
|
30
30
|
}
|
31
31
|
main {
|
32
32
|
.content-container {
|
33
|
-
margin:
|
33
|
+
margin: 3.5em auto 0 auto;
|
34
34
|
width: 90%;
|
35
35
|
padding: 0px 18px 24px;
|
36
36
|
flex-grow: 1;
|
@@ -58,6 +58,12 @@ a, p, li {
|
|
58
58
|
font-size: 1.1em;
|
59
59
|
}
|
60
60
|
|
61
|
+
hr {
|
62
|
+
margin-top: 2em;
|
63
|
+
margin-bottom: 0.5em;
|
64
|
+
width: 100%;
|
65
|
+
}
|
66
|
+
|
61
67
|
img {
|
62
68
|
max-width: 100%;
|
63
69
|
height: auto;
|
@@ -79,4 +85,24 @@ img {
|
|
79
85
|
padding: 0px 9px 12px;
|
80
86
|
}
|
81
87
|
}
|
88
|
+
}
|
89
|
+
|
90
|
+
audio {
|
91
|
+
max-width: 100%;
|
92
|
+
}
|
93
|
+
|
94
|
+
.read-more {
|
95
|
+
position: absolute;
|
96
|
+
right: 10px;
|
97
|
+
bottom: -1em;
|
98
|
+
font-size: 0.9em;
|
99
|
+
line-height: 1em;
|
100
|
+
font-weight: 300;
|
101
|
+
padding-bottom: 0.5em;
|
102
|
+
color: #000000;
|
103
|
+
a {
|
104
|
+
&:hover {
|
105
|
+
text-decoration: underline;
|
106
|
+
}
|
107
|
+
}
|
82
108
|
}
|
@@ -0,0 +1,40 @@
|
|
1
|
+
.discography, .post-feed {
|
2
|
+
max-width: 100%;
|
3
|
+
& &-album {
|
4
|
+
display: flex;
|
5
|
+
flex-direction: row;
|
6
|
+
position: relative;
|
7
|
+
&_cover {
|
8
|
+
width: 20vw;
|
9
|
+
height: 20vw;
|
10
|
+
border: 1px solid #CCC;
|
11
|
+
&-wrapper {
|
12
|
+
display: block;
|
13
|
+
margin-right: 0.5em;
|
14
|
+
}
|
15
|
+
}
|
16
|
+
p, a {
|
17
|
+
font-size: 0.9em;
|
18
|
+
line-height: 1em;
|
19
|
+
font-weight: 300;
|
20
|
+
padding-bottom: 0.5em;
|
21
|
+
color: $p_text;
|
22
|
+
}
|
23
|
+
a:hover {
|
24
|
+
text-decoration: underline $p_text;
|
25
|
+
}
|
26
|
+
|
27
|
+
&_title {
|
28
|
+
margin-top: 3vw;
|
29
|
+
font-size: 2em;
|
30
|
+
margin-bottom: 0.6em;
|
31
|
+
&:hover {
|
32
|
+
text-decoration: underline;
|
33
|
+
}
|
34
|
+
}
|
35
|
+
|
36
|
+
&_summary {
|
37
|
+
margin-bottom: 1em;
|
38
|
+
}
|
39
|
+
}
|
40
|
+
}
|
data/_sass/styles/_index.scss
CHANGED
data/_sass/styles/_menu.scss
CHANGED
@@ -13,11 +13,6 @@
|
|
13
13
|
width: $menu-size;
|
14
14
|
box-sizing: border-box;
|
15
15
|
padding: 8px 0 0 22px;
|
16
|
-
@include mobile {
|
17
|
-
flex-direction: row;
|
18
|
-
width: 100%;
|
19
|
-
height: $menu-size;
|
20
|
-
}
|
21
16
|
|
22
17
|
&-top {
|
23
18
|
box-sizing: border-box;
|
@@ -25,9 +20,6 @@
|
|
25
20
|
flex-grow: 1;
|
26
21
|
padding-left: 3px;
|
27
22
|
padding-right: 3px;
|
28
|
-
@include mobile {
|
29
|
-
padding: 3px 10px 3px 10px;
|
30
|
-
}
|
31
23
|
|
32
24
|
&_logo {
|
33
25
|
max-width: 100px;
|
@@ -63,11 +55,6 @@
|
|
63
55
|
&.selected {
|
64
56
|
font-weight: 600;
|
65
57
|
}
|
66
|
-
@include mobile {
|
67
|
-
height: calc(#{$menu-size} - 10px);
|
68
|
-
width: $menu-size;
|
69
|
-
font-size: 30px;
|
70
|
-
}
|
71
58
|
|
72
59
|
i {
|
73
60
|
margin-right: 5px;
|
@@ -75,4 +62,24 @@
|
|
75
62
|
}
|
76
63
|
}
|
77
64
|
}
|
65
|
+
|
66
|
+
&-contact {
|
67
|
+
display:flex;
|
68
|
+
justify-content:left;
|
69
|
+
margin-bottom: 1em;
|
70
|
+
flex-wrap: wrap;
|
71
|
+
a {
|
72
|
+
color: $p_text;
|
73
|
+
cursor:pointer;
|
74
|
+
text-align:left;
|
75
|
+
text-size-adjust:100%;
|
76
|
+
user-select:none;
|
77
|
+
margin-left: 4px;
|
78
|
+
margin-right: 4px;
|
79
|
+
opacity: 60%;
|
80
|
+
&:hover {
|
81
|
+
opacity: 100%;
|
82
|
+
}
|
83
|
+
}
|
84
|
+
}
|
78
85
|
}
|
data/_sass/styles/_post.scss
CHANGED
@@ -36,12 +36,12 @@
|
|
36
36
|
display: list-item;
|
37
37
|
}
|
38
38
|
|
39
|
-
&-content {
|
39
|
+
& &-content, & &-metadata {
|
40
40
|
background: $white;
|
41
|
-
padding: 0.2em 2rem
|
41
|
+
padding: 0.2em 2rem 1rem 2rem;
|
42
42
|
border-radius: 10px;
|
43
43
|
@include mobile {
|
44
|
-
padding: 0.2em 1.2rem
|
44
|
+
padding: 0.2em 1.2rem 0.6rem 1.2rem;
|
45
45
|
}
|
46
46
|
}
|
47
47
|
|
@@ -50,19 +50,30 @@
|
|
50
50
|
h1 {
|
51
51
|
padding: 0;
|
52
52
|
line-height: 1em;
|
53
|
+
margin-bottom: 0.5em;
|
53
54
|
}
|
54
55
|
p {
|
55
56
|
margin: 0;
|
56
57
|
color: $p_text;
|
58
|
+
}
|
59
|
+
}
|
57
60
|
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
+
& &-metadata {
|
62
|
+
text-align: left;
|
63
|
+
p {
|
64
|
+
font-size: 1em;
|
65
|
+
margin-top: 5px;
|
66
|
+
margin-bottom: 5px;
|
67
|
+
}
|
68
|
+
a {
|
69
|
+
color: $p_text;
|
70
|
+
&:hover {
|
71
|
+
text-decoration: underline $p_text;
|
61
72
|
}
|
62
73
|
}
|
63
74
|
}
|
64
75
|
|
65
|
-
&-cover {
|
76
|
+
& &-cover {
|
66
77
|
&_image {
|
67
78
|
display: block;
|
68
79
|
max-width: 100%;
|
@@ -70,8 +81,13 @@
|
|
70
81
|
background-repeat: no-repeat;
|
71
82
|
background-size: cover;
|
72
83
|
height: auto;
|
73
|
-
max-height:
|
84
|
+
max-height: 65vh;
|
74
85
|
margin: auto;
|
75
86
|
}
|
76
87
|
}
|
88
|
+
|
89
|
+
a {
|
90
|
+
color: #19005e;
|
91
|
+
font-size: 1em;
|
92
|
+
}
|
77
93
|
}
|
@@ -1,7 +1,6 @@
|
|
1
1
|
$image-dim: 192px;
|
2
2
|
|
3
3
|
.post-feed {
|
4
|
-
margin-top: 4em;
|
5
4
|
display: flex;
|
6
5
|
flex-direction: column;
|
7
6
|
flex-wrap: wrap;
|
@@ -10,10 +9,7 @@ $image-dim: 192px;
|
|
10
9
|
color: $p_text;
|
11
10
|
article {
|
12
11
|
width: 100%;
|
13
|
-
|
14
|
-
hr {
|
15
|
-
margin-top: 2em;
|
16
|
-
margin-bottom: 0.5em;
|
12
|
+
position: relative;
|
17
13
|
}
|
18
14
|
.page-summary {
|
19
15
|
flex: 0;
|
@@ -46,6 +42,7 @@ $image-dim: 192px;
|
|
46
42
|
width: max-content;
|
47
43
|
margin: auto;
|
48
44
|
margin-bottom: 0.5em;
|
45
|
+
max-width: 100%;
|
49
46
|
}
|
50
47
|
|
51
48
|
&_image {
|
@@ -38,10 +38,10 @@
|
|
38
38
|
transition: all 300ms ease 0s;
|
39
39
|
cursor: pointer;
|
40
40
|
text-decoration-line: none;
|
41
|
-
|
41
|
+
color: $hyperlink;
|
42
42
|
&:hover {
|
43
|
-
|
44
|
-
|
43
|
+
text-decoration: underline $hyperlink;
|
44
|
+
|
45
45
|
}
|
46
46
|
}
|
47
47
|
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/pages/about.html
CHANGED
@@ -1,12 +1,11 @@
|
|
1
1
|
---
|
2
|
-
layout:
|
2
|
+
layout: default
|
3
3
|
title: About
|
4
4
|
permalink: about.html
|
5
5
|
category: about
|
6
6
|
|
7
7
|
---
|
8
|
-
<div class="
|
9
|
-
|
10
|
-
|
11
|
-
<p>{{ site.data.menu.menu_intro }}</p>
|
8
|
+
<div class="content-container about">
|
9
|
+
<h1>About</h1>
|
10
|
+
It's a good place to write something about the project!
|
12
11
|
</div>
|
data/pages/collaborations.html
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: minimal-music-project
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Patryk Bieszke
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-01-
|
11
|
+
date: 2021-01-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -38,12 +38,14 @@ files:
|
|
38
38
|
- _data/customs.yml
|
39
39
|
- _data/menu.yml
|
40
40
|
- _data/metaData.yml
|
41
|
-
- _includes/avatar.html
|
42
41
|
- _includes/common-head.html
|
43
42
|
- _includes/cookies.js
|
44
43
|
- _includes/customizations.html
|
44
|
+
- _includes/discography-entry-metadata.html
|
45
|
+
- _includes/discography-entry.html
|
45
46
|
- _includes/footer.html
|
46
47
|
- _includes/menu.html
|
48
|
+
- _includes/read-more.html
|
47
49
|
- _layouts/default.html
|
48
50
|
- _layouts/discography.html
|
49
51
|
- _layouts/post.html
|
@@ -51,6 +53,7 @@ files:
|
|
51
53
|
- _sass/minimal-music-project.scss
|
52
54
|
- _sass/styles/_cookies.scss
|
53
55
|
- _sass/styles/_defaults.scss
|
56
|
+
- _sass/styles/_discography.scss
|
54
57
|
- _sass/styles/_index.scss
|
55
58
|
- _sass/styles/_layout.scss
|
56
59
|
- _sass/styles/_menu.scss
|
@@ -60,6 +63,9 @@ files:
|
|
60
63
|
- _sass/variables/_index.scss
|
61
64
|
- _sass/variables/_layout.scss
|
62
65
|
- _sass/variables/_mixins.scss
|
66
|
+
- assets/audio/sample_song.mp3
|
67
|
+
- assets/img/Experimental-Glitches-Cover.png
|
68
|
+
- assets/img/YyY-Cover.png
|
63
69
|
- assets/img/android-chrome-192x192.png
|
64
70
|
- assets/img/android-chrome-256x256.png
|
65
71
|
- assets/img/apple-touch-icon.png
|
@@ -72,10 +78,10 @@ files:
|
|
72
78
|
- assets/img/post-2.jpg
|
73
79
|
- assets/img/safari-pinned-tab.svg
|
74
80
|
- assets/img/site.webmanifest
|
81
|
+
- assets/img/z-is-for-zero.png
|
75
82
|
- assets/styles/styles.scss
|
76
83
|
- pages/about.html
|
77
84
|
- pages/collaborations.html
|
78
|
-
- pages/discography.html
|
79
85
|
homepage: https://github.com/ItsMeaga1n/minimal-music-project
|
80
86
|
licenses:
|
81
87
|
- MIT
|
data/_includes/avatar.html
DELETED