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.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/404.html +11 -11
  3. data/LICENSE.txt +21 -21
  4. data/README.md +131 -116
  5. data/_config.yml +37 -37
  6. data/_data/customs.yml +2 -2
  7. data/_data/menu.yml +32 -32
  8. data/_data/metaData.yml +19 -18
  9. data/_includes/common-head.html +21 -21
  10. data/_includes/common.js +77 -62
  11. data/_includes/cookies.js +62 -62
  12. data/_includes/customizationsScripts.html +6 -6
  13. data/_includes/customizationsStyles.html +6 -6
  14. data/_includes/discography-entry-metadata.html +77 -77
  15. data/_includes/discography-entry.html +37 -24
  16. data/_includes/footer.html +9 -9
  17. data/_includes/menu.html +35 -35
  18. data/_includes/music-player.html +123 -123
  19. data/_includes/pagination-buttons.html +13 -13
  20. data/_includes/read-more.html +12 -12
  21. data/_layouts/cookies.html +28 -27
  22. data/_layouts/default.html +21 -21
  23. data/_layouts/discography.html +15 -15
  24. data/_layouts/post.html +34 -24
  25. data/_layouts/posts_feed.html +68 -55
  26. data/_sass/minimal-music-project.scss +1 -1
  27. data/_sass/styles/_cookies.scss +60 -60
  28. data/_sass/styles/_defaults.scss +165 -146
  29. data/_sass/styles/_discography.scss +41 -42
  30. data/_sass/styles/_embedded-player.scss +8 -8
  31. data/_sass/styles/_index.scss +9 -9
  32. data/_sass/styles/_layout.scss +49 -49
  33. data/_sass/styles/_menu.scss +161 -161
  34. data/_sass/styles/_modal.scss +22 -18
  35. data/_sass/styles/_music-player.scss +91 -91
  36. data/_sass/styles/_post.scss +94 -89
  37. data/_sass/styles/_posts_feed.scss +73 -72
  38. data/_sass/variables/_colors.scss +4 -4
  39. data/_sass/variables/_index.scss +2 -2
  40. data/_sass/variables/_layout.scss +27 -27
  41. data/_sass/variables/_mixins.scss +54 -54
  42. data/assets/img/300.png +0 -0
  43. data/assets/img/600.png +0 -0
  44. data/assets/img/browserconfig.xml +9 -9
  45. data/assets/img/safari-pinned-tab.svg +38 -38
  46. data/assets/img/site.webmanifest +19 -19
  47. data/assets/styles/styles.scss +7 -7
  48. data/pages/about.html +64 -64
  49. data/pages/cookies.html +9 -9
  50. data/pages/privacyPolicy.html +9 -9
  51. metadata +5 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: edd9c6b971a10e388ca18b42699c6bc9a76948bc90d1a270478f8dbd86d659c2
4
- data.tar.gz: '096ce7fdcfc914bced72f2c936cbd0a8babe65cc2ce141d9752f143aeb49418b'
3
+ metadata.gz: aa8cd09ce3d26bf32238cb8de8f66c639c06ade4efa26357eb9769dd11d5f9cb
4
+ data.tar.gz: 5ac754a0091a922190440778ee1bc00da35a4dd4ec54dae7d4b3524116e7d961
5
5
  SHA512:
6
- metadata.gz: 4baaf80ffac9e6de479ec022ac1aee2774f6297df00907e44ef23503dc7c6345978cf3fca5e9d57546a5b8e9e0c261627312e6aba789f1a18a4a5ef837266779
7
- data.tar.gz: 0f3beda45e38193f7d90266be68a1174c881eb28bf92535a43beb2d862318bba2a6c635f0606ea4b5fa351cdb01f4402f45dda0d71d7d5833677522688a1b7a9
6
+ metadata.gz: fb250ad16b4b75552680eb4c742f4a6df9b472568306cafe74e6391c0446f29d08098ab426cdf877896143b0e0dd2e853af060f7bcfd73690f08f84006473657
7
+ data.tar.gz: 817c34cfc071f0fcf99f9e0f86c5f88bfd0650573085ee79a92bb1eab5af787593331974b4cf765922e8f67cad036d2e2aa93cbed1b3fbea8a77844823cbac07
data/404.html CHANGED
@@ -1,11 +1,11 @@
1
- ---
2
- layout: default
3
- permalink: 404.html
4
- ---
5
-
6
- <div class="content-container">
7
- <h1>404</h1>
8
-
9
- <p><strong>Page not found :(</strong></p>
10
- <p>The requested page could not be found.</p>
11
- </div>
1
+ ---
2
+ layout: default
3
+ permalink: 404.html
4
+ ---
5
+
6
+ <div class="content-container">
7
+ <h1>404</h1>
8
+
9
+ <p><strong>Page not found :(</strong></p>
10
+ <p>The requested page could not be found.</p>
11
+ </div>
data/LICENSE.txt CHANGED
@@ -1,21 +1,21 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2021 Patryk Bieszke
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2021 Patryk Bieszke
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md CHANGED
@@ -1,116 +1,131 @@
1
- <h1><a href="https://github.com/ItsMeaga1n/minimal-music-project/"><img src="https://raw.githubusercontent.com/ItsMeaga1n/minimal-music-project/master/assets/img/favicon.ico" height="21" alt="minimal-categorized logo" /> minimal-music-project Jekyll theme </h1></a>
2
-
3
- [![LICENSE](https://img.shields.io/badge/license-MIT-lightgrey.svg)](https://raw.githubusercontent.com/itsmeaga1n/minimal-music-project/master/LICENSE.txt)
4
- [![Jekyll](https://img.shields.io/badge/jekyll-%3E%3D%203.9-blue.svg)](https://jekyllrb.com/)
5
- [![Gem Version](https://badge.fury.io/rb/minimal-music-project.svg)](https://badge.fury.io/rb/minimal-music-project)
6
- <a href="https://ko-fi.com/itsmeaga1n">
7
- <img height="20" src="https://www.ko-fi.com/img/githubbutton_sm.svg"
8
- alt="Donate (Ko-fi)" />
9
- </a>
10
-
11
- minimal-music-project is a flexible, extendable Jekyll theme. With this theme it's plain simple to create a good looking website for a music band with all the required components to list all releases and news. Demo is available [here](https://minimal-music-project.netlify.app/).
12
-
13
- ![layout examples](https://raw.githubusercontent.com/ItsMeaga1n/minimal-music-project/master/screenshot.png)
14
-
15
- ## Installation
16
-
17
- There are three ways to install:
18
-
19
- * As a ruby gem theme:
20
-
21
- Add this line to your Jekyll site's `Gemfile`:
22
-
23
- ```ruby
24
- gem "minimal-categorized"
25
- ```
26
-
27
- And add this line to your Jekyll site's `_config.yml`:
28
-
29
- ```yaml
30
- theme: minimal-categorized
31
- ```
32
-
33
- And then execute:
34
-
35
- $ bundle
36
-
37
- Or install it yourself as:
38
-
39
- $ gem install minimal-categorized
40
-
41
- * As a remote theme (GitHub Pages compatible)
42
-
43
- In your Jekyll site's _config.yml remove other themes and add this entry:
44
- ```
45
- remote_theme: ItsMeaga1n/minimal-categorized
46
- ```
47
-
48
- * Forking/directly copying all of the theme files into your project.
49
-
50
- ## Usage
51
- This theme uses pager plugin `jekyll-paginate-v2` for pagination and `jekyll-seo-tag` for seo tags. It can be configured in main _config file.
52
-
53
- Configuration via .yml files
54
-
55
- Structure of `_data/menu.yml`:
56
- * menu_pages: a list of items in menu. Each item contains information:
57
- * title: Menu position title
58
- * url: URL for href
59
- * category: unique identifier of category. Used to determine which menu item is selected
60
- * tooltip: Tooltip for menu item
61
- * menu_contacts: a list of items to be displayed for a contact section in menu
62
- * faicon: FavIcon to be displayed in menu
63
- * url: URL for href
64
- * target: target value of \<a> tag
65
-
66
-
67
- Structure of `_data/metaData.yml`:
68
- * author: Site Author name
69
- * logo: relative url to the logo
70
- * clickToEnlargeImages: boolean value to enable/disable "full-screen" images on click
71
- * cookies: customize information about site cookies
72
- * enabled: determine if should show cookies pop-up
73
- * message: text on cookie pop-up
74
- * agreeButtonText: text on agree button
75
- * disagreeButtonText: text on disagree button
76
- * agreeButtonFnName: function in the `window` scope to execute on cookie agree
77
- * disagreeButtonFnName: function in the `window` scope to execute on cookie disagree
78
- * header: title of the pop-up window
79
- * consent: list of objects that will be rendered on a site with "cookies" layout for acceptance. Each object needs to have:
80
- * name: bolded on render
81
- * description: description of the cookie
82
- * cookieName: under what name it will be saved in the local storage (selected checkbox as "true", unselected as "false")
83
-
84
- Structure of `_data/customs.yml`:
85
- * custom-css: a list of urls to custom css files
86
- * custom-js: a list of urls to custom javascript files
87
-
88
- ## Posts front matter parameters
89
-
90
- ### Embedding media
91
- Each post can have it's own associated player. Information on how to embed the player should be described under *embed\_player* parameter. Each player should have at least two parameters: *src* and *type*, where *type* will define on how to fill *src*. Supported types:
92
-
93
- * soundcloud - src should be full url to song
94
- * bandcamp - on a "embed song" option on bandcamp, everything after *EmbeddedPlayer/* in generated code should be put to src parameter in front matter
95
- * spotify - src should be id of the song. It can be acquired via "copy song link", e.g. for url https://open.spotify.com/track/67IdIp2ij8oqTFsSguvy2I?si=f735480b74414902 the src should be 67IdIp2ij8oqTFsSguvy2I
96
- * youtube - src should be the *v* uri parameter, e.g. for url https://www.youtube.com/watch?v=dfdruxvE9-0 the src should be dfdruxvE9-0
97
- * anchor.fm - src is the full episode name (e.g. for URL https://anchor.fm/sucias/episodes/Not-All-Men-e15v6dv src should be Not-All-Men-e15v6dv)
98
- * audio_file - src should be path to file. Additionaly, required properties are name of the song (it will display in player) and boolean value *is\_relative\_url* (for easy access to files served from the same domain)
99
-
100
- ## Contributing
101
-
102
- Bug reports and pull requests are welcome on [GitHub](https://github.com/ItsMeaga1n/minimal-music-project). This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
103
-
104
- ## Development
105
-
106
- To set up your environment to develop this theme, run `bundle install`.
107
-
108
- Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
109
-
110
- When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
111
- To add a custom directory to your theme-gem, please edit the regexp in `minimal-music-project.gemspec` accordingly.
112
-
113
- ## License
114
-
115
- The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
116
- Custom Volume Slider was developed with the fundaments based on [codepen project](https://codepen.io/EmNudge/pen/rRbLJQ), thus this component is licensed under [Copyright (c) 2021 by EmNudge](https://codepen.io/EmNudge/pen/rRbLJQ).
1
+ <h1><a href="https://github.com/ItsMeaga1n/minimal-music-project/"><img src="https://raw.githubusercontent.com/ItsMeaga1n/minimal-music-project/master/assets/img/favicon.ico" height="21" alt="minimal-categorized logo" /> minimal-music-project Jekyll theme </h1></a>
2
+
3
+ [![LICENSE](https://img.shields.io/badge/license-MIT-lightgrey.svg)](https://raw.githubusercontent.com/itsmeaga1n/minimal-music-project/master/LICENSE.txt)
4
+ [![Jekyll](https://img.shields.io/badge/jekyll-%3E%3D%203.9-blue.svg)](https://jekyllrb.com/)
5
+ [![Gem Version](https://badge.fury.io/rb/minimal-music-project.svg)](https://badge.fury.io/rb/minimal-music-project)
6
+ <a href="https://ko-fi.com/itsmeaga1n">
7
+ <img height="20" src="https://www.ko-fi.com/img/githubbutton_sm.svg"
8
+ alt="Donate (Ko-fi)" />
9
+ </a>
10
+
11
+ minimal-music-project is a flexible, extendable Jekyll theme. With this theme it's plain simple to create a good looking website for a music band with all the required components to list all releases and news. Demo is available [here](https://minimal-music-project.netlify.app/).
12
+
13
+ ![layout examples](https://raw.githubusercontent.com/ItsMeaga1n/minimal-music-project/master/screenshot.png)
14
+
15
+ ## Installation
16
+
17
+ There are three ways to install:
18
+
19
+ * As a ruby gem theme:
20
+
21
+ Add this line to your Jekyll site's `Gemfile`:
22
+
23
+ ```ruby
24
+ gem "minimal-categorized"
25
+ ```
26
+
27
+ And add this line to your Jekyll site's `_config.yml`:
28
+
29
+ ```yaml
30
+ theme: minimal-categorized
31
+ ```
32
+
33
+ And then execute:
34
+
35
+ $ bundle
36
+
37
+ Or install it yourself as:
38
+
39
+ $ gem install minimal-categorized
40
+
41
+ * As a remote theme (GitHub Pages compatible)
42
+
43
+ In your Jekyll site's _config.yml remove other themes and add this entry:
44
+ ```
45
+ remote_theme: ItsMeaga1n/minimal-categorized
46
+ ```
47
+
48
+ * Forking/directly copying all of the theme files into your project.
49
+
50
+ ## Usage
51
+ This theme uses pager plugin `jekyll-paginate-v2` for pagination and `jekyll-seo-tag` for seo tags. It can be configured in main _config file.
52
+
53
+ Configuration via .yml files
54
+
55
+ Structure of `_data/menu.yml`:
56
+
57
+ * menu_pages: a list of items in menu. Each item contains information:
58
+ * title: Menu position title
59
+ * url: URL for href
60
+ * category: unique identifier of category. Used to determine which menu item is selected
61
+ * tooltip: Tooltip for menu item
62
+ * menu_contacts: a list of items to be displayed for a contact section in menu
63
+ * faicon: FavIcon to be displayed in menu
64
+ * url: URL for href
65
+ * target: target value of \<a> tag
66
+
67
+ Structure of `_data/metaData.yml`:
68
+
69
+ * author: Site Author name
70
+ * logo: relative url to the logo
71
+ * clickToEnlargeImages: boolean value to enable/disable "full-screen" images on click
72
+ * cookies: customize information about site cookies
73
+ * enabled: determine if should show cookies pop-up
74
+ * message: text on cookie pop-up
75
+ * agreeButtonText: text on agree button
76
+ * disagreeButtonText: text on disagree button
77
+ * agreeButtonFnName: function in the `window` scope to execute on cookie agree
78
+ * disagreeButtonFnName: function in the `window` scope to execute on cookie disagree
79
+ * header: title of the pop-up window
80
+ * consent: list of objects that will be rendered on a site with "cookies" layout for acceptance. Each object needs to have:
81
+ * name: bolded on render
82
+ * description: description of the cookie
83
+ * cookieName: under what name it will be saved in the local storage (selected checkbox as "true", unselected as "false")
84
+
85
+ Structure of `_data/customs.yml`:
86
+
87
+ * custom-css: a list of urls to custom css files
88
+ * custom-js: a list of urls to custom javascript files
89
+
90
+ ## Posts front matter parameters
91
+
92
+ ### Images
93
+ There are two parameters responsible for displaying images: *image* and *responsiveImage*. The first one should have string value equal to the relative path to the image to display in a post (and post-feed / discography preview) if *responsiveImage* is not set. This path will always be used for *clickToEnlargeImages* functionality too. The *responsiveImage* is an array of objects that will be transpiled to img in DOM property *srcset*. Each object should contain two properties:
94
+
95
+ * *src* - path to the file
96
+ * *size* - image's intrinsic width in pixels
97
+
98
+ It's recommended to use *responsiveImage* for responsible image loading.
99
+
100
+ ### Embedding media
101
+
102
+ Each post can have it's own associated player. Information on how to embed the player should be described under *embed\_player* parameter. Each player should have at least two parameters: *src* and *type*, where *type* will define on how to fill *src*. Supported types:
103
+
104
+ * soundcloud - src should be full url to song
105
+ * bandcamp - on a "embed song" option on bandcamp, everything after *EmbeddedPlayer/* in generated code should be put to src parameter in front matter
106
+ * spotify - src should be id of the song. It can be acquired via "copy song link", e.g. for url https://open.spotify.com/track/67IdIp2ij8oqTFsSguvy2I?si=f735480b74414902 the src should be 67IdIp2ij8oqTFsSguvy2I
107
+ * spotifyalbum - same as "spotify", but src id of an album
108
+ * spotifyplaylist - same as "spotify", but src id of a playlist
109
+ * spotifyepisode - same as "spotify", but src id of a podcast episode
110
+ * spotifyshow - same as "spotify", but src if of a podcast serie (show)
111
+ * youtube - src should be the *v* uri parameter, e.g. for url https://www.youtube.com/watch?v=dfdruxvE9-0 the src should be dfdruxvE9-0
112
+ * anchor.fm - src is the full episode name (e.g. for URL https://anchor.fm/sucias/episodes/Not-All-Men-e15v6dv src should be Not-All-Men-e15v6dv)
113
+ * audio_file - src should be path to file. Additionaly, required properties are name of the song (it will display in player) and boolean value *is\_relative\_url* (for easy access to files served from the same domain)
114
+
115
+ ## Contributing
116
+
117
+ Bug reports and pull requests are welcome on [GitHub](https://github.com/ItsMeaga1n/minimal-music-project). This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
118
+
119
+ ## Development
120
+
121
+ To set up your environment to develop this theme, run `bundle install`.
122
+
123
+ Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
124
+
125
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
126
+ To add a custom directory to your theme-gem, please edit the regexp in `minimal-music-project.gemspec` accordingly.
127
+
128
+ ## License
129
+
130
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
131
+ Custom Volume Slider was developed with the fundaments based on [codepen project](https://codepen.io/EmNudge/pen/rRbLJQ), thus this component is licensed under [Copyright (c) 2021 by EmNudge](https://codepen.io/EmNudge/pen/rRbLJQ).
data/_config.yml CHANGED
@@ -1,38 +1,38 @@
1
- title: minimal-music-project
2
- tagline: A site showing the usage of Jekyll custom theme
3
- email: email@example.com
4
- description: >-
5
- This website was created as a demonstration for Jekyll custom theme
6
- named minimal-music-project. Its main feature is to make it easy to create
7
- websites for music projects
8
- url: "https://itsmeaga1n.github.io" # the base hostname & protocol for your site, e.g. http://example.com
9
- author: itsmeaga1n
10
- twitter:
11
- username: itsmeaga1n
12
- card: summary
13
- plugins:
14
- - jekyll-seo-tag
15
- - jekyll-feed
16
- - jekyll-sitemap
17
- - jekyll-paginate-v2
18
- # Build settings
19
- markdown: kramdown
20
- remote_theme: ItsMeaga1n/minimal-music-project
21
- permalink: /:title.html
22
- pagination:
23
- enabled: true
24
- per_page: 4
25
- limit: 0
26
- sort_field: 'date'
27
- sort_reverse: true
28
-
29
- exclude:
30
- - CHANGELOG.md
31
- - CNAME
32
- - Gemfile
33
- - Gemfile.lock
34
- - LICENSE
35
- - README.md
36
- - screenshot.png
37
- - docs/
1
+ title: minimal-music-project
2
+ tagline: A site showing the usage of Jekyll custom theme
3
+ email: email@example.com
4
+ description: >-
5
+ This website was created as a demonstration for Jekyll custom theme
6
+ named minimal-music-project. Its main feature is to make it easy to create
7
+ websites for music projects
8
+ url: "https://itsmeaga1n.github.io" # the base hostname & protocol for your site, e.g. http://example.com
9
+ author: itsmeaga1n
10
+ twitter:
11
+ username: itsmeaga1n
12
+ card: summary
13
+ plugins:
14
+ - jekyll-seo-tag
15
+ - jekyll-feed
16
+ - jekyll-sitemap
17
+ - jekyll-paginate-v2
18
+ # Build settings
19
+ markdown: kramdown
20
+ remote_theme: ItsMeaga1n/minimal-music-project
21
+ permalink: /:title.html
22
+ pagination:
23
+ enabled: true
24
+ per_page: 4
25
+ limit: 0
26
+ sort_field: 'date'
27
+ sort_reverse: true
28
+
29
+ exclude:
30
+ - CHANGELOG.md
31
+ - CNAME
32
+ - Gemfile
33
+ - Gemfile.lock
34
+ - LICENSE
35
+ - README.md
36
+ - screenshot.png
37
+ - docs/
38
38
  - node_modules
data/_data/customs.yml CHANGED
@@ -1,3 +1,3 @@
1
- custom-css:
2
-
1
+ custom-css:
2
+
3
3
  custom-js:
data/_data/menu.yml CHANGED
@@ -1,33 +1,33 @@
1
- menu_pages:
2
- - title: Home
3
- url: /
4
- category: home
5
-
6
- - title: Discography
7
- url: /discography/
8
- category: discography
9
- tooltip: Discography tooltip
10
-
11
- - title: Collaborations
12
- url: /collaborations/
13
- category: collaborations
14
- tooltip: Collaborations tooltip
15
-
16
- - title: About
17
- url: about.html
18
- category: 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:
31
- - faicon: fas fa-rss
32
- url: /feed.xml
1
+ menu_pages:
2
+ - title: Home
3
+ url: /
4
+ category: home
5
+
6
+ - title: Discography
7
+ url: /discography/
8
+ category: discography
9
+ tooltip: Discography tooltip
10
+
11
+ - title: Collaborations
12
+ url: /collaborations/
13
+ category: collaborations
14
+ tooltip: Collaborations tooltip
15
+
16
+ - title: About
17
+ url: about.html
18
+ category: 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:
31
+ - faicon: fas fa-rss
32
+ url: /feed.xml
33
33
  target: _blank
data/_data/metaData.yml CHANGED
@@ -1,18 +1,19 @@
1
- author: Site Author
2
- logo: assets/img/band_logo.png
3
- clickToEnlargeImages: True
4
- cookies:
5
- enabled: True
6
- message: This site might be using cookies! Customize your message or disable cookies in metaData.yml!
7
- agreeButtonText: Yes, I agree
8
- disagreeButtonText: No, take me to settings
9
- agreeButtonFnName: cookiesAcceptDefaultFn
10
- disagreeButtonFnName: cookiesDisagreeDefaultFn
11
- header: Ask your users if they agree to cookies
12
- consent:
13
- - name: Google Analytics
14
- description: some description describing the purpose of this consent as well as what it will collect and where send
15
- cookieName: GA
16
- - name: Some other cookie
17
- description: some description describing the purpose of this consent as well as what it will collect and where send
18
- cookieName: SA
1
+ author: Site Author
2
+ logo: assets/img/band_logo.png
3
+ clickToEnlargeImages: True
4
+ cookies:
5
+ enabled: True
6
+ message: This site might be using cookies! Customize your message or disable cookies in metaData.yml!
7
+ agreeButtonText: Yes, I agree
8
+ disagreeButtonText: No, take me to settings
9
+ agreeButtonFnName: cookiesAcceptDefaultFn
10
+ disagreeButtonFnName: cookiesDisagreeDefaultFn
11
+ header: Ask your users if they agree to cookies
12
+ consent:
13
+ - name: Google Analytics
14
+ description: some description describing the purpose of this consent as well as what it will collect and where send
15
+ cookieName: GA
16
+ - name: Some other cookie that is always true
17
+ description: some description describing the purpose of this consent as well as what it will collect and where send
18
+ cookieName: SA
19
+ alwaysAgree: true
@@ -1,22 +1,22 @@
1
- <meta charset="utf-8">
2
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
3
- <link rel="stylesheet" href="{{ '/assets/styles/styles.css' | relative_url }}">
4
- <link rel="stylesheet" href="https://indestructibletype.com/fonts/Jost.css" type="text/css" charset="utf-8" />
5
- <script src="https://kit.fontawesome.com/79c31398dc.js" crossorigin="anonymous"></script>
6
-
7
- <!-- favicon -->
8
- <link rel="apple-touch-icon" sizes="180x180" href="{{ '/assets/img/apple-touch-icon.png' | relative_url }}">
9
- <link rel="icon" type="image/png" sizes="32x32" href="{{ '/assets/img/favicon-32x32.png' | relative_url }}">
10
- <link rel="icon" type="image/png" sizes="16x16" href="{{ '/assets/img/favicon-16x16.png' | relative_url }}">
11
- <link rel="manifest" href="{{ '/assets/img/site.webmanifest' | relative_url }}">
12
- <link rel="mask-icon" href="{{ '/assets/img/safari-pinned-tab.svg'| relative_url }}" color="#5bbad5">
13
- <link rel="shortcut icon" href="{{'/assets/img/favicon.ico' | relative_url }}">
14
- <meta name="msapplication-TileColor" content="#da532c">
15
- <meta name="msapplication-config" content="{{ '/assets/img/browserconfig.xml' | relative_url }}">
16
- <meta name="theme-color" content="#ffffff">
17
-
18
- <!-- feed -->
19
- <link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ "feed.xml" | relative_url }}">
20
-
21
- {% include customizationsStyles.html %}
1
+ <meta charset="utf-8">
2
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
3
+ <link rel="stylesheet" href="{{ '/assets/styles/styles.css' | relative_url }}">
4
+ <link rel="stylesheet" href="https://indestructibletype.com/fonts/Jost.css" type="text/css" charset="utf-8" />
5
+ <script src="https://kit.fontawesome.com/79c31398dc.js" crossorigin="anonymous"></script>
6
+
7
+ <!-- favicon -->
8
+ <link rel="apple-touch-icon" sizes="180x180" href="{{ '/assets/img/apple-touch-icon.png' | relative_url }}">
9
+ <link rel="icon" type="image/png" sizes="32x32" href="{{ '/assets/img/favicon-32x32.png' | relative_url }}">
10
+ <link rel="icon" type="image/png" sizes="16x16" href="{{ '/assets/img/favicon-16x16.png' | relative_url }}">
11
+ <link rel="manifest" href="{{ '/assets/img/site.webmanifest' | relative_url }}">
12
+ <link rel="mask-icon" href="{{ '/assets/img/safari-pinned-tab.svg'| relative_url }}" color="#5bbad5">
13
+ <link rel="shortcut icon" href="{{'/assets/img/favicon.ico' | relative_url }}">
14
+ <meta name="msapplication-TileColor" content="#da532c">
15
+ <meta name="msapplication-config" content="{{ '/assets/img/browserconfig.xml' | relative_url }}">
16
+ <meta name="theme-color" content="#ffffff">
17
+
18
+ <!-- feed -->
19
+ <link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ "feed.xml" | relative_url }}">
20
+
21
+ {% include customizationsStyles.html %}
22
22
  {% seo %}