minimal-music-project 0.1.0 → 0.1.1
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/404.html +11 -11
- data/LICENSE.txt +21 -21
- data/README.md +131 -116
- data/_config.yml +37 -37
- data/_data/customs.yml +2 -2
- data/_data/menu.yml +32 -32
- data/_data/metaData.yml +19 -18
- data/_includes/common-head.html +21 -21
- data/_includes/common.js +77 -62
- data/_includes/cookies.js +62 -62
- data/_includes/customizationsScripts.html +6 -6
- data/_includes/customizationsStyles.html +6 -6
- data/_includes/discography-entry-metadata.html +77 -77
- data/_includes/discography-entry.html +37 -24
- data/_includes/footer.html +9 -9
- data/_includes/menu.html +35 -35
- data/_includes/music-player.html +123 -123
- data/_includes/pagination-buttons.html +13 -13
- data/_includes/read-more.html +12 -12
- data/_layouts/cookies.html +28 -27
- data/_layouts/default.html +21 -21
- data/_layouts/discography.html +15 -15
- data/_layouts/post.html +34 -24
- data/_layouts/posts_feed.html +68 -55
- data/_sass/minimal-music-project.scss +1 -1
- data/_sass/styles/_cookies.scss +60 -60
- data/_sass/styles/_defaults.scss +165 -146
- data/_sass/styles/_discography.scss +41 -42
- data/_sass/styles/_embedded-player.scss +8 -8
- data/_sass/styles/_index.scss +9 -9
- data/_sass/styles/_layout.scss +49 -49
- data/_sass/styles/_menu.scss +161 -161
- data/_sass/styles/_modal.scss +22 -18
- data/_sass/styles/_music-player.scss +91 -91
- data/_sass/styles/_post.scss +94 -89
- data/_sass/styles/_posts_feed.scss +73 -72
- data/_sass/variables/_colors.scss +4 -4
- data/_sass/variables/_index.scss +2 -2
- data/_sass/variables/_layout.scss +27 -27
- data/_sass/variables/_mixins.scss +54 -54
- data/assets/img/300.png +0 -0
- data/assets/img/600.png +0 -0
- data/assets/img/browserconfig.xml +9 -9
- data/assets/img/safari-pinned-tab.svg +38 -38
- data/assets/img/site.webmanifest +19 -19
- data/assets/styles/styles.scss +7 -7
- data/pages/about.html +64 -64
- data/pages/cookies.html +9 -9
- data/pages/privacyPolicy.html +9 -9
- metadata +5 -3
data/assets/styles/styles.scss
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
---
|
2
|
-
---
|
3
|
-
// {% if site.data.metaData.lightTheme %}
|
4
|
-
// @import "./variables/light-theme";
|
5
|
-
// {% else %}
|
6
|
-
// @import "./variables/black-theme";
|
7
|
-
// {% endif %}
|
1
|
+
---
|
2
|
+
---
|
3
|
+
// {% if site.data.metaData.lightTheme %}
|
4
|
+
// @import "./variables/light-theme";
|
5
|
+
// {% else %}
|
6
|
+
// @import "./variables/black-theme";
|
7
|
+
// {% endif %}
|
8
8
|
@import "minimal-music-project";
|
data/pages/about.html
CHANGED
@@ -1,65 +1,65 @@
|
|
1
|
-
---
|
2
|
-
layout: default
|
3
|
-
title: About
|
4
|
-
permalink: about.html
|
5
|
-
category: about
|
6
|
-
---
|
7
|
-
<div class="content-container about">
|
8
|
-
<h1>About</h1>
|
9
|
-
It's a good place to write something about the project. This projects repository is located on <a
|
10
|
-
href="https://github.com/ItsMeaga1n/minimal-music-project" target="_blank">GitHub</a>. Since you are here, feel
|
11
|
-
free to check out my other stuff either on <a href="https://github.com/ItsMeaga1n" target="_blank">GitHub</a> or on
|
12
|
-
my <a href="http://itsmeaga1n.github.io" target="_blank">blog</a>!
|
13
|
-
|
14
|
-
<hr />
|
15
|
-
<p>
|
16
|
-
Listen and get music from this example project at:
|
17
|
-
<ul>
|
18
|
-
<li>
|
19
|
-
<a>
|
20
|
-
YouTube
|
21
|
-
<i class="fab fa-youtube"></i>
|
22
|
-
</a>
|
23
|
-
</li>
|
24
|
-
<li>
|
25
|
-
<a>
|
26
|
-
SoundCloud
|
27
|
-
<i class="fab fa-soundcloud"></i>
|
28
|
-
</a>
|
29
|
-
</li>
|
30
|
-
<li>
|
31
|
-
<a>
|
32
|
-
BandCamp
|
33
|
-
<i class="fab fa-bandcamp"></i>
|
34
|
-
</a>
|
35
|
-
</li>
|
36
|
-
</ul>
|
37
|
-
</p>
|
38
|
-
<hr />
|
39
|
-
<a href="/privacy-policy">
|
40
|
-
Privacy Policy
|
41
|
-
</a>
|
42
|
-
/
|
43
|
-
<a href="/cookies">
|
44
|
-
Cookies
|
45
|
-
</a>
|
46
|
-
</div>
|
47
|
-
|
48
|
-
<style>
|
49
|
-
a {
|
50
|
-
text-decoration: underline;
|
51
|
-
text-decoration-color: transparent;
|
52
|
-
transition: 0.4s;
|
53
|
-
-webkit-text-decoration-color: transparent;
|
54
|
-
-moz-text-decoration-color: transparent;
|
55
|
-
cursor: pointer;
|
56
|
-
color: #290099;
|
57
|
-
}
|
58
|
-
|
59
|
-
a:hover {
|
60
|
-
text-decoration-color: #290099;
|
61
|
-
transition: 0.4s;
|
62
|
-
-webkit-text-decoration-color: #290099;
|
63
|
-
-moz-text-decoration-color: #290099;
|
64
|
-
}
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
title: About
|
4
|
+
permalink: about.html
|
5
|
+
category: about
|
6
|
+
---
|
7
|
+
<div class="content-container about">
|
8
|
+
<h1>About</h1>
|
9
|
+
It's a good place to write something about the project. This projects repository is located on <a
|
10
|
+
href="https://github.com/ItsMeaga1n/minimal-music-project" target="_blank">GitHub</a>. Since you are here, feel
|
11
|
+
free to check out my other stuff either on <a href="https://github.com/ItsMeaga1n" target="_blank">GitHub</a> or on
|
12
|
+
my <a href="http://itsmeaga1n.github.io" target="_blank">blog</a>!
|
13
|
+
|
14
|
+
<hr />
|
15
|
+
<p>
|
16
|
+
Listen and get music from this example project at:
|
17
|
+
<ul>
|
18
|
+
<li>
|
19
|
+
<a>
|
20
|
+
YouTube
|
21
|
+
<i class="fab fa-youtube"></i>
|
22
|
+
</a>
|
23
|
+
</li>
|
24
|
+
<li>
|
25
|
+
<a>
|
26
|
+
SoundCloud
|
27
|
+
<i class="fab fa-soundcloud"></i>
|
28
|
+
</a>
|
29
|
+
</li>
|
30
|
+
<li>
|
31
|
+
<a>
|
32
|
+
BandCamp
|
33
|
+
<i class="fab fa-bandcamp"></i>
|
34
|
+
</a>
|
35
|
+
</li>
|
36
|
+
</ul>
|
37
|
+
</p>
|
38
|
+
<hr />
|
39
|
+
<a href="/privacy-policy">
|
40
|
+
Privacy Policy
|
41
|
+
</a>
|
42
|
+
/
|
43
|
+
<a href="/cookies">
|
44
|
+
Cookies
|
45
|
+
</a>
|
46
|
+
</div>
|
47
|
+
|
48
|
+
<style>
|
49
|
+
a {
|
50
|
+
text-decoration: underline;
|
51
|
+
text-decoration-color: transparent;
|
52
|
+
transition: 0.4s;
|
53
|
+
-webkit-text-decoration-color: transparent;
|
54
|
+
-moz-text-decoration-color: transparent;
|
55
|
+
cursor: pointer;
|
56
|
+
color: #290099;
|
57
|
+
}
|
58
|
+
|
59
|
+
a:hover {
|
60
|
+
text-decoration-color: #290099;
|
61
|
+
transition: 0.4s;
|
62
|
+
-webkit-text-decoration-color: #290099;
|
63
|
+
-moz-text-decoration-color: #290099;
|
64
|
+
}
|
65
65
|
</style>
|
data/pages/cookies.html
CHANGED
@@ -1,9 +1,9 @@
|
|
1
|
-
---
|
2
|
-
layout: cookies
|
3
|
-
title: Manage your data
|
4
|
-
permalink: cookies
|
5
|
-
category: about
|
6
|
-
---
|
7
|
-
<h1>Manage your data</h1>
|
8
|
-
<p>This website uses cookies to provide you with the best user experience.</p>
|
9
|
-
<p>Below are checkboxes, that you need to confirm in order to enable/disable specific data collection. Some of them might be needed for specific functionalities on site.</p>
|
1
|
+
---
|
2
|
+
layout: cookies
|
3
|
+
title: Manage your data
|
4
|
+
permalink: cookies
|
5
|
+
category: about
|
6
|
+
---
|
7
|
+
<h1>Manage your data</h1>
|
8
|
+
<p>This website uses cookies to provide you with the best user experience.</p>
|
9
|
+
<p>Below are checkboxes, that you need to confirm in order to enable/disable specific data collection. Some of them might be needed for specific functionalities on site.</p>
|
data/pages/privacyPolicy.html
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
---
|
2
|
-
layout: default
|
3
|
-
title: Privacy Policy
|
4
|
-
permalink: privacy-policy
|
5
|
-
category: about
|
6
|
-
---
|
7
|
-
<div class="content-container about">
|
8
|
-
<h1>Privacy Policy</h1>
|
9
|
-
Put your privacy policy here
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
title: Privacy Policy
|
4
|
+
permalink: privacy-policy
|
5
|
+
category: about
|
6
|
+
---
|
7
|
+
<div class="content-container about">
|
8
|
+
<h1>Privacy Policy</h1>
|
9
|
+
Put your privacy policy here
|
10
10
|
</div>
|
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.1.
|
4
|
+
version: 0.1.1
|
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-
|
11
|
+
date: 2021-10-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -72,6 +72,8 @@ files:
|
|
72
72
|
- _sass/variables/_layout.scss
|
73
73
|
- _sass/variables/_mixins.scss
|
74
74
|
- assets/audio/sample_song.mp3
|
75
|
+
- assets/img/300.png
|
76
|
+
- assets/img/600.png
|
75
77
|
- assets/img/Experimental-Glitches-Cover.png
|
76
78
|
- assets/img/YyY-Cover.png
|
77
79
|
- assets/img/android-chrome-192x192.png
|
@@ -110,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
110
112
|
- !ruby/object:Gem::Version
|
111
113
|
version: '0'
|
112
114
|
requirements: []
|
113
|
-
rubygems_version: 3.1.
|
115
|
+
rubygems_version: 3.1.4
|
114
116
|
signing_key:
|
115
117
|
specification_version: 4
|
116
118
|
summary: minimal-music-project is a Jekyll theme for GitHub Pages
|