minimal-music-project 0.1.2 → 0.1.5
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 +142 -133
- data/_config.yml +38 -38
- data/_data/customs.yml +2 -2
- data/_data/menu.yml +32 -32
- data/_data/metaData.yml +20 -20
- data/_includes/common-head.html +22 -22
- data/_includes/common.js +95 -95
- data/_includes/cookies.js +63 -63
- 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 +41 -37
- 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 +29 -28
- data/_layouts/default.html +21 -21
- data/_layouts/discography.html +15 -15
- data/_layouts/post.html +34 -34
- data/_layouts/posts_feed.html +72 -68
- data/_sass/minimal-music-project.scss +1 -1
- data/_sass/styles/_cookies.scss +60 -60
- data/_sass/styles/_defaults.scss +164 -164
- data/_sass/styles/_discography.scss +74 -45
- 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 +177 -176
- data/_sass/styles/_modal.scss +29 -29
- data/_sass/styles/_music-player.scss +91 -91
- data/_sass/styles/_post.scss +94 -94
- data/_sass/styles/_posts_feed.scss +73 -73
- 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/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 +65 -65
- data/pages/cookies.html +9 -9
- data/pages/privacyPolicy.html +9 -9
- metadata +4 -4
| @@ -1,55 +1,55 @@ | |
| 1 | 
            -
            @mixin underline-on-hover($underline-color) {
         | 
| 2 | 
            -
              text-decoration: underline;
         | 
| 3 | 
            -
              text-decoration-color: transparent;
         | 
| 4 | 
            -
              transition: 0.4s;
         | 
| 5 | 
            -
              -webkit-text-decoration-color: transparent;
         | 
| 6 | 
            -
              -moz-text-decoration-color: transparent;
         | 
| 7 | 
            -
              &:hover {
         | 
| 8 | 
            -
                text-decoration-color: $underline-color;
         | 
| 9 | 
            -
                -webkit-text-decoration-color: $underline-color;
         | 
| 10 | 
            -
                -moz-text-decoration-color: $underline-color;
         | 
| 11 | 
            -
              }
         | 
| 12 | 
            -
            }
         | 
| 13 | 
            -
             | 
| 14 | 
            -
            @mixin tooltip {
         | 
| 15 | 
            -
                position: relative;
         | 
| 16 | 
            -
                &:hover .tooltip {
         | 
| 17 | 
            -
                    visibility: visible;
         | 
| 18 | 
            -
                    opacity: 1;
         | 
| 19 | 
            -
                  }
         | 
| 20 | 
            -
                & .tooltip {
         | 
| 21 | 
            -
                    visibility: hidden;
         | 
| 22 | 
            -
                    width: 120px;
         | 
| 23 | 
            -
                    background-color: #555;
         | 
| 24 | 
            -
                    color: #fff;
         | 
| 25 | 
            -
                    text-align: center;
         | 
| 26 | 
            -
                    border-radius: 6px;
         | 
| 27 | 
            -
                    padding: 5px 0;
         | 
| 28 | 
            -
                    position: absolute;
         | 
| 29 | 
            -
                    z-index: 1;
         | 
| 30 | 
            -
                    bottom: 100%;
         | 
| 31 | 
            -
                    left: 50%;
         | 
| 32 | 
            -
                    margin-left: -60px;
         | 
| 33 | 
            -
                    opacity: 0;
         | 
| 34 | 
            -
                    transition: opacity 0.3s;
         | 
| 35 | 
            -
                    font-size: 14px;
         | 
| 36 | 
            -
                    &::after {
         | 
| 37 | 
            -
                        content: "";
         | 
| 38 | 
            -
                        position: absolute;
         | 
| 39 | 
            -
                        top: 100%;
         | 
| 40 | 
            -
                        left: 50%;
         | 
| 41 | 
            -
                        margin-left: -5px;
         | 
| 42 | 
            -
                        border-width: 5px;
         | 
| 43 | 
            -
                        border-style: solid;
         | 
| 44 | 
            -
                        border-color: #555 transparent transparent transparent;
         | 
| 45 | 
            -
                      }
         | 
| 46 | 
            -
                }
         | 
| 47 | 
            -
            }
         | 
| 48 | 
            -
             | 
| 49 | 
            -
            @mixin hyperlink-convention {
         | 
| 50 | 
            -
                a {
         | 
| 51 | 
            -
                  cursor: pointer;
         | 
| 52 | 
            -
                  @include underline-on-hover($hyperlink);
         | 
| 53 | 
            -
                  color: $hyperlink;
         | 
| 54 | 
            -
              }
         | 
| 1 | 
            +
            @mixin underline-on-hover($underline-color) {
         | 
| 2 | 
            +
              text-decoration: underline;
         | 
| 3 | 
            +
              text-decoration-color: transparent;
         | 
| 4 | 
            +
              transition: 0.4s;
         | 
| 5 | 
            +
              -webkit-text-decoration-color: transparent;
         | 
| 6 | 
            +
              -moz-text-decoration-color: transparent;
         | 
| 7 | 
            +
              &:hover {
         | 
| 8 | 
            +
                text-decoration-color: $underline-color;
         | 
| 9 | 
            +
                -webkit-text-decoration-color: $underline-color;
         | 
| 10 | 
            +
                -moz-text-decoration-color: $underline-color;
         | 
| 11 | 
            +
              }
         | 
| 12 | 
            +
            }
         | 
| 13 | 
            +
             | 
| 14 | 
            +
            @mixin tooltip {
         | 
| 15 | 
            +
                position: relative;
         | 
| 16 | 
            +
                &:hover .tooltip {
         | 
| 17 | 
            +
                    visibility: visible;
         | 
| 18 | 
            +
                    opacity: 1;
         | 
| 19 | 
            +
                  }
         | 
| 20 | 
            +
                & .tooltip {
         | 
| 21 | 
            +
                    visibility: hidden;
         | 
| 22 | 
            +
                    width: 120px;
         | 
| 23 | 
            +
                    background-color: #555;
         | 
| 24 | 
            +
                    color: #fff;
         | 
| 25 | 
            +
                    text-align: center;
         | 
| 26 | 
            +
                    border-radius: 6px;
         | 
| 27 | 
            +
                    padding: 5px 0;
         | 
| 28 | 
            +
                    position: absolute;
         | 
| 29 | 
            +
                    z-index: 1;
         | 
| 30 | 
            +
                    bottom: 100%;
         | 
| 31 | 
            +
                    left: 50%;
         | 
| 32 | 
            +
                    margin-left: -60px;
         | 
| 33 | 
            +
                    opacity: 0;
         | 
| 34 | 
            +
                    transition: opacity 0.3s;
         | 
| 35 | 
            +
                    font-size: 14px;
         | 
| 36 | 
            +
                    &::after {
         | 
| 37 | 
            +
                        content: "";
         | 
| 38 | 
            +
                        position: absolute;
         | 
| 39 | 
            +
                        top: 100%;
         | 
| 40 | 
            +
                        left: 50%;
         | 
| 41 | 
            +
                        margin-left: -5px;
         | 
| 42 | 
            +
                        border-width: 5px;
         | 
| 43 | 
            +
                        border-style: solid;
         | 
| 44 | 
            +
                        border-color: #555 transparent transparent transparent;
         | 
| 45 | 
            +
                      }
         | 
| 46 | 
            +
                }
         | 
| 47 | 
            +
            }
         | 
| 48 | 
            +
             | 
| 49 | 
            +
            @mixin hyperlink-convention {
         | 
| 50 | 
            +
                a {
         | 
| 51 | 
            +
                  cursor: pointer;
         | 
| 52 | 
            +
                  @include underline-on-hover($hyperlink);
         | 
| 53 | 
            +
                  color: $hyperlink;
         | 
| 54 | 
            +
              }
         | 
| 55 55 | 
             
            }
         | 
| @@ -1,9 +1,9 @@ | |
| 1 | 
            -
            <?xml version="1.0" encoding="utf-8"?>
         | 
| 2 | 
            -
            <browserconfig>
         | 
| 3 | 
            -
                <msapplication>
         | 
| 4 | 
            -
                    <tile>
         | 
| 5 | 
            -
                        <square150x150logo src="/assets/img/mstile-150x150.png"/>
         | 
| 6 | 
            -
                        <TileColor>#da532c</TileColor>
         | 
| 7 | 
            -
                    </tile>
         | 
| 8 | 
            -
                </msapplication>
         | 
| 9 | 
            -
            </browserconfig>
         | 
| 1 | 
            +
            <?xml version="1.0" encoding="utf-8"?>
         | 
| 2 | 
            +
            <browserconfig>
         | 
| 3 | 
            +
                <msapplication>
         | 
| 4 | 
            +
                    <tile>
         | 
| 5 | 
            +
                        <square150x150logo src="/assets/img/mstile-150x150.png"/>
         | 
| 6 | 
            +
                        <TileColor>#da532c</TileColor>
         | 
| 7 | 
            +
                    </tile>
         | 
| 8 | 
            +
                </msapplication>
         | 
| 9 | 
            +
            </browserconfig>
         | 
| @@ -1,38 +1,38 @@ | |
| 1 | 
            -
            <?xml version="1.0" standalone="no"?>
         | 
| 2 | 
            -
            <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
         | 
| 3 | 
            -
             "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
         | 
| 4 | 
            -
            <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
         | 
| 5 | 
            -
             width="260.000000pt" height="260.000000pt" viewBox="0 0 260.000000 260.000000"
         | 
| 6 | 
            -
             preserveAspectRatio="xMidYMid meet">
         | 
| 7 | 
            -
            <metadata>
         | 
| 8 | 
            -
            Created by potrace 1.11, written by Peter Selinger 2001-2013
         | 
| 9 | 
            -
            </metadata>
         | 
| 10 | 
            -
            <g transform="translate(0.000000,260.000000) scale(0.100000,-0.100000)"
         | 
| 11 | 
            -
            fill="#000000" stroke="none">
         | 
| 12 | 
            -
            <path d="M164 1906 c-72 -49 -107 -92 -94 -117 6 -10 15 -19 20 -19 5 0 56
         | 
| 13 | 
            -
            -79 114 -176 l106 -176 -38 -65 c-20 -35 -41 -72 -47 -81 -5 -10 -38 -65 -72
         | 
| 14 | 
            -
            -122 -34 -58 -78 -123 -97 -144 -20 -22 -37 -44 -37 -50 -5 -41 10 -55 98 -97
         | 
| 15 | 
            -
            82 -38 128 -39 146 -1 8 15 17 41 20 58 5 25 123 241 147 267 10 12 142 -216
         | 
| 16 | 
            -
            160 -277 22 -72 51 -81 127 -41 30 17 68 45 84 63 25 28 27 36 18 60 -6 15
         | 
| 17 | 
            -
            -23 41 -38 57 -16 17 -72 107 -125 202 l-97 171 101 149 c57 81 120 163 142
         | 
| 18 | 
            -
            182 46 40 63 74 48 101 -6 11 -44 36 -84 56 -57 28 -81 35 -103 29 -35 -8 -53
         | 
| 19 | 
            -
            -23 -53 -42 0 -13 -167 -263 -175 -263 -2 0 -105 182 -164 290 -15 27 -54 22
         | 
| 20 | 
            -
            -107 -14z"/>
         | 
| 21 | 
            -
            <path d="M1024 1906 c-72 -49 -107 -92 -94 -117 6 -10 15 -19 20 -19 11 0 222
         | 
| 22 | 
            -
            -349 217 -358 -43 -80 -225 -377 -241 -394 -46 -47 -59 -74 -44 -98 17 -29
         | 
| 23 | 
            -
            146 -90 189 -90 38 0 61 27 72 86 5 25 123 241 147 267 10 12 148 -226 159
         | 
| 24 | 
            -
            -275 18 -79 59 -87 148 -29 100 65 109 96 44 166 -16 17 -72 107 -126 202
         | 
| 25 | 
            -
            l-97 172 65 93 c35 51 84 122 108 157 24 35 53 68 65 73 12 6 31 27 43 49 30
         | 
| 26 | 
            -
            52 19 69 -73 115 -57 28 -81 35 -103 29 -34 -8 -53 -23 -53 -42 0 -12 -103
         | 
| 27 | 
            -
            -170 -159 -242 l-18 -23 -77 138 c-42 77 -80 146 -85 154 -15 27 -54 22 -107
         | 
| 28 | 
            -
            -14z"/>
         | 
| 29 | 
            -
            <path d="M1874 1906 c-72 -49 -107 -92 -94 -117 6 -10 15 -19 20 -19 5 0 46
         | 
| 30 | 
            -
            -62 91 -137 44 -76 92 -155 106 -175 l25 -37 -108 -186 c-60 -103 -121 -199
         | 
| 31 | 
            -
            -136 -215 -75 -80 -69 -104 35 -154 93 -45 141 -48 160 -8 8 15 17 41 20 58 5
         | 
| 32 | 
            -
            25 123 241 147 267 10 12 146 -221 162 -279 19 -70 50 -79 124 -39 113 61 131
         | 
| 33 | 
            -
            105 71 172 -19 21 -78 115 -131 210 l-98 172 108 156 c60 86 120 164 135 172
         | 
| 34 | 
            -
            30 18 61 75 53 97 -8 21 -73 61 -130 81 -60 21 -99 10 -115 -32 -9 -25 -111
         | 
| 35 | 
            -
            -181 -158 -242 l-18 -23 -77 138 c-42 77 -80 146 -85 154 -15 27 -54 22 -107
         | 
| 36 | 
            -
            -14z"/>
         | 
| 37 | 
            -
            </g>
         | 
| 38 | 
            -
            </svg>
         | 
| 1 | 
            +
            <?xml version="1.0" standalone="no"?>
         | 
| 2 | 
            +
            <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
         | 
| 3 | 
            +
             "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
         | 
| 4 | 
            +
            <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
         | 
| 5 | 
            +
             width="260.000000pt" height="260.000000pt" viewBox="0 0 260.000000 260.000000"
         | 
| 6 | 
            +
             preserveAspectRatio="xMidYMid meet">
         | 
| 7 | 
            +
            <metadata>
         | 
| 8 | 
            +
            Created by potrace 1.11, written by Peter Selinger 2001-2013
         | 
| 9 | 
            +
            </metadata>
         | 
| 10 | 
            +
            <g transform="translate(0.000000,260.000000) scale(0.100000,-0.100000)"
         | 
| 11 | 
            +
            fill="#000000" stroke="none">
         | 
| 12 | 
            +
            <path d="M164 1906 c-72 -49 -107 -92 -94 -117 6 -10 15 -19 20 -19 5 0 56
         | 
| 13 | 
            +
            -79 114 -176 l106 -176 -38 -65 c-20 -35 -41 -72 -47 -81 -5 -10 -38 -65 -72
         | 
| 14 | 
            +
            -122 -34 -58 -78 -123 -97 -144 -20 -22 -37 -44 -37 -50 -5 -41 10 -55 98 -97
         | 
| 15 | 
            +
            82 -38 128 -39 146 -1 8 15 17 41 20 58 5 25 123 241 147 267 10 12 142 -216
         | 
| 16 | 
            +
            160 -277 22 -72 51 -81 127 -41 30 17 68 45 84 63 25 28 27 36 18 60 -6 15
         | 
| 17 | 
            +
            -23 41 -38 57 -16 17 -72 107 -125 202 l-97 171 101 149 c57 81 120 163 142
         | 
| 18 | 
            +
            182 46 40 63 74 48 101 -6 11 -44 36 -84 56 -57 28 -81 35 -103 29 -35 -8 -53
         | 
| 19 | 
            +
            -23 -53 -42 0 -13 -167 -263 -175 -263 -2 0 -105 182 -164 290 -15 27 -54 22
         | 
| 20 | 
            +
            -107 -14z"/>
         | 
| 21 | 
            +
            <path d="M1024 1906 c-72 -49 -107 -92 -94 -117 6 -10 15 -19 20 -19 11 0 222
         | 
| 22 | 
            +
            -349 217 -358 -43 -80 -225 -377 -241 -394 -46 -47 -59 -74 -44 -98 17 -29
         | 
| 23 | 
            +
            146 -90 189 -90 38 0 61 27 72 86 5 25 123 241 147 267 10 12 148 -226 159
         | 
| 24 | 
            +
            -275 18 -79 59 -87 148 -29 100 65 109 96 44 166 -16 17 -72 107 -126 202
         | 
| 25 | 
            +
            l-97 172 65 93 c35 51 84 122 108 157 24 35 53 68 65 73 12 6 31 27 43 49 30
         | 
| 26 | 
            +
            52 19 69 -73 115 -57 28 -81 35 -103 29 -34 -8 -53 -23 -53 -42 0 -12 -103
         | 
| 27 | 
            +
            -170 -159 -242 l-18 -23 -77 138 c-42 77 -80 146 -85 154 -15 27 -54 22 -107
         | 
| 28 | 
            +
            -14z"/>
         | 
| 29 | 
            +
            <path d="M1874 1906 c-72 -49 -107 -92 -94 -117 6 -10 15 -19 20 -19 5 0 46
         | 
| 30 | 
            +
            -62 91 -137 44 -76 92 -155 106 -175 l25 -37 -108 -186 c-60 -103 -121 -199
         | 
| 31 | 
            +
            -136 -215 -75 -80 -69 -104 35 -154 93 -45 141 -48 160 -8 8 15 17 41 20 58 5
         | 
| 32 | 
            +
            25 123 241 147 267 10 12 146 -221 162 -279 19 -70 50 -79 124 -39 113 61 131
         | 
| 33 | 
            +
            105 71 172 -19 21 -78 115 -131 210 l-98 172 108 156 c60 86 120 164 135 172
         | 
| 34 | 
            +
            30 18 61 75 53 97 -8 21 -73 61 -130 81 -60 21 -99 10 -115 -32 -9 -25 -111
         | 
| 35 | 
            +
            -181 -158 -242 l-18 -23 -77 138 c-42 77 -80 146 -85 154 -15 27 -54 22 -107
         | 
| 36 | 
            +
            -14z"/>
         | 
| 37 | 
            +
            </g>
         | 
| 38 | 
            +
            </svg>
         | 
    
        data/assets/img/site.webmanifest
    CHANGED
    
    | @@ -1,19 +1,19 @@ | |
| 1 | 
            -
            {
         | 
| 2 | 
            -
                "name": "",
         | 
| 3 | 
            -
                "short_name": "",
         | 
| 4 | 
            -
                "icons": [
         | 
| 5 | 
            -
                    {
         | 
| 6 | 
            -
                        "src": "/assets/img/android-chrome-192x192.png",
         | 
| 7 | 
            -
                        "sizes": "192x192",
         | 
| 8 | 
            -
                        "type": "image/png"
         | 
| 9 | 
            -
                    },
         | 
| 10 | 
            -
                    {
         | 
| 11 | 
            -
                        "src": "/assets/img/android-chrome-256x256.png",
         | 
| 12 | 
            -
                        "sizes": "256x256",
         | 
| 13 | 
            -
                        "type": "image/png"
         | 
| 14 | 
            -
                    }
         | 
| 15 | 
            -
                ],
         | 
| 16 | 
            -
                "theme_color": "#ffffff",
         | 
| 17 | 
            -
                "background_color": "#ffffff",
         | 
| 18 | 
            -
                "display": "standalone"
         | 
| 19 | 
            -
            }
         | 
| 1 | 
            +
            {
         | 
| 2 | 
            +
                "name": "",
         | 
| 3 | 
            +
                "short_name": "",
         | 
| 4 | 
            +
                "icons": [
         | 
| 5 | 
            +
                    {
         | 
| 6 | 
            +
                        "src": "/assets/img/android-chrome-192x192.png",
         | 
| 7 | 
            +
                        "sizes": "192x192",
         | 
| 8 | 
            +
                        "type": "image/png"
         | 
| 9 | 
            +
                    },
         | 
| 10 | 
            +
                    {
         | 
| 11 | 
            +
                        "src": "/assets/img/android-chrome-256x256.png",
         | 
| 12 | 
            +
                        "sizes": "256x256",
         | 
| 13 | 
            +
                        "type": "image/png"
         | 
| 14 | 
            +
                    }
         | 
| 15 | 
            +
                ],
         | 
| 16 | 
            +
                "theme_color": "#ffffff",
         | 
| 17 | 
            +
                "background_color": "#ffffff",
         | 
| 18 | 
            +
                "display": "standalone"
         | 
| 19 | 
            +
            }
         | 
    
        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/ | 
| 11 | 
            -
                free to check out my other stuff either on <a href="https://github.com/ | 
| 12 | 
            -
                my <a href="http:// | 
| 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 | 
            -
            </style>
         | 
| 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/ItsPatrq/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/ItsPatrq" target="_blank">GitHub</a> or on
         | 
| 12 | 
            +
                my <a href="http://itspatrq.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 | 
            +
            </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.5
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Patryk Bieszke
         | 
| 8 8 | 
             
            autorequire:
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date:  | 
| 11 | 
            +
            date: 2022-03-20 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: jekyll
         | 
| @@ -93,7 +93,7 @@ files: | |
| 93 93 | 
             
            - pages/about.html
         | 
| 94 94 | 
             
            - pages/cookies.html
         | 
| 95 95 | 
             
            - pages/privacyPolicy.html
         | 
| 96 | 
            -
            homepage: https://github.com/ | 
| 96 | 
            +
            homepage: https://github.com/ItsPatrq/minimal-music-project
         | 
| 97 97 | 
             
            licenses:
         | 
| 98 98 | 
             
            - MIT
         | 
| 99 99 | 
             
            metadata: {}
         | 
| @@ -112,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 112 112 | 
             
                - !ruby/object:Gem::Version
         | 
| 113 113 | 
             
                  version: '0'
         | 
| 114 114 | 
             
            requirements: []
         | 
| 115 | 
            -
            rubygems_version: 3. | 
| 115 | 
            +
            rubygems_version: 3.3.7
         | 
| 116 116 | 
             
            signing_key:
         | 
| 117 117 | 
             
            specification_version: 4
         | 
| 118 118 | 
             
            summary: minimal-music-project is a Jekyll theme for GitHub Pages
         |