jekyll-theme-katydecorah 0.1.3

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 (74) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +42 -0
  4. data/_includes/end.html +15 -0
  5. data/_includes/footer.html +15 -0
  6. data/_includes/header.html +5 -0
  7. data/_includes/icons/angle-left.svg +1 -0
  8. data/_includes/icons/angle-right.svg +1 -0
  9. data/_includes/icons/blog.svg +1 -0
  10. data/_includes/icons/bookmark.svg +1 -0
  11. data/_includes/icons/code.svg +1 -0
  12. data/_includes/icons/codepen.svg +1 -0
  13. data/_includes/icons/github.svg +1 -0
  14. data/_includes/icons/instagram.svg +1 -0
  15. data/_includes/icons/link.svg +1 -0
  16. data/_includes/icons/mail.svg +1 -0
  17. data/_includes/icons/map-signs.svg +1 -0
  18. data/_includes/icons/map.svg +1 -0
  19. data/_includes/icons/marker.svg +1 -0
  20. data/_includes/icons/menu.svg +1 -0
  21. data/_includes/icons/music.svg +1 -0
  22. data/_includes/icons/pause.svg +1 -0
  23. data/_includes/icons/play.svg +1 -0
  24. data/_includes/icons/rss.svg +1 -0
  25. data/_includes/icons/selection.json +485 -0
  26. data/_includes/icons/tag.svg +1 -0
  27. data/_includes/icons/twitter.svg +1 -0
  28. data/_includes/img.html +5 -0
  29. data/_includes/locations.html +1 -0
  30. data/_includes/paginator.html +15 -0
  31. data/_includes/post-list.html +7 -0
  32. data/_includes/post-map-header.html +11 -0
  33. data/_includes/prev-next.html +3 -0
  34. data/_includes/single-playlist.html +16 -0
  35. data/_includes/skip.html +4 -0
  36. data/_includes/tags.html +1 -0
  37. data/_includes/top.html +35 -0
  38. data/_includes/twitter.html +1 -0
  39. data/_layouts/category.html +10 -0
  40. data/_layouts/default.html +13 -0
  41. data/_layouts/front-page.html +25 -0
  42. data/_layouts/hello.html +12 -0
  43. data/_layouts/post.html +30 -0
  44. data/_layouts/redirect.html +7 -0
  45. data/_layouts/review.html +175 -0
  46. data/_sass/_accessibility.scss +29 -0
  47. data/_sass/_adventure.scss +69 -0
  48. data/_sass/_archive.scss +71 -0
  49. data/_sass/_brags.scss +23 -0
  50. data/_sass/_buttons.scss +28 -0
  51. data/_sass/_code.scss +308 -0
  52. data/_sass/_footer.scss +61 -0
  53. data/_sass/_front-page.scss +180 -0
  54. data/_sass/_header.scss +21 -0
  55. data/_sass/_icons.scss +62 -0
  56. data/_sass/_layout.scss +59 -0
  57. data/_sass/_map.scss +93 -0
  58. data/_sass/_mixins.scss +28 -0
  59. data/_sass/_nav.scss +54 -0
  60. data/_sass/_playlists.scss +58 -0
  61. data/_sass/_posts.scss +347 -0
  62. data/_sass/_postsMap.scss +69 -0
  63. data/_sass/_print.scss +13 -0
  64. data/_sass/_review.scss +124 -0
  65. data/_sass/_scaffolding.scss +148 -0
  66. data/_sass/_search.scss +29 -0
  67. data/_sass/_shame.scss +0 -0
  68. data/_sass/_type.scss +184 -0
  69. data/_sass/_utilities.scss +82 -0
  70. data/_sass/_variables.scss +137 -0
  71. data/assets/lunr-feed.js +48 -0
  72. data/assets/lunr.min.js +7 -0
  73. data/assets/style.scss +29 -0
  74. metadata +158 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 7a6d569b56bdc127b1494491e0c9fc56f50f5492709aa704ce8147a3ab332c26
4
+ data.tar.gz: 85e27387fe40b9e089a885bc6e84e563c972ca8c9c6c3a81387a05e0df1bc68f
5
+ SHA512:
6
+ metadata.gz: 36de019dca5050c73ac64607cc72b927ce587900c9c406a6328a6d03e3cdfdf81f7e8e372435271cb644742d9f04f5b34e9285a8fa139a9ff0a668e4970ffba9
7
+ data.tar.gz: '09ff383b5081b4ba69fa6ad3623b4f81b467972c5de7b48bf4d3c6b0cacdb50a65b9d366e1850ba93cf55e480292229d9a0092d5b7522a74cbdaca6bd5d73fd4'
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Katy DeCorah
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 ADDED
@@ -0,0 +1,42 @@
1
+ # jekyll-theme-katydecorah
2
+
3
+ Jekyll theme for katydecorah.com
4
+
5
+ ## Installation
6
+
7
+ Add this line to your Jekyll site's `Gemfile`:
8
+
9
+ ```ruby
10
+ gem "jekyll-theme-katydecorah"
11
+ ```
12
+
13
+ And add this line to your Jekyll site's `_config.yml`:
14
+
15
+ ```yaml
16
+ theme: jekyll-theme-katydecorah
17
+ ```
18
+
19
+ And then execute:
20
+
21
+ $ bundle
22
+
23
+ Or install it yourself as:
24
+
25
+ $ gem install jekyll-theme-katydecorah
26
+
27
+ ## Usage
28
+
29
+ TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
30
+
31
+ ## Development
32
+
33
+ To set up your environment to develop this theme, run `bundle install`.
34
+
35
+ 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.
36
+
37
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
38
+ To add a custom directory to your theme-gem, please edit the regexp in `jekyll-theme-katydecorah.gemspec` accordingly.
39
+
40
+ ## License
41
+
42
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,15 @@
1
+ {% if page.categories[0] == "code" %}
2
+ <script async src="https://codepen.io/assets/embed/ei.js"></script>
3
+ {% endif %}
4
+ {% if page.title == "Search" %}
5
+ <script src="/js/lunr.min.js"></script>
6
+ <script src="/js/lunr-feed.js"></script>
7
+ {% endif %}
8
+ <script>
9
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
10
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
11
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
12
+ })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
13
+ ga('create', '{{site.googleanalytics}}', 'auto');
14
+ ga('send', 'pageview');
15
+ </script>
@@ -0,0 +1,15 @@
1
+ <div class="footer" id="hello">
2
+ <div class="container">
3
+ <div class="bio">
4
+ <div class="bio-img">
5
+ {% include img.html src=site.image class="bio-img-container img-half" alt=site.author.name %}
6
+ </div>
7
+ <div class="bio-details">
8
+ <div>{{site.bio}}</div>
9
+ </div>
10
+ </div>
11
+ <div class="nav">{% for link in site.links %}{% if link.position == 'bottom' %}{% assign icon = link.icon | prepend: 'icons/' | append: '.svg' %}
12
+ <a href="{{ link.url }}" title="{{ link.text }}" class="nav-link">{% include {{icon}} %}</a>{% endif %}{% endfor %}
13
+ </div>
14
+ </div>
15
+ </div>
@@ -0,0 +1,5 @@
1
+ <div class="header" id="nav">
2
+ <div class="container">
3
+ <a href="/" class="logo">{{site.title}}</a>
4
+ </div>
5
+ </div>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="12" height="32" viewBox="0 0 12 32" class="icon icon-angle-left"><path d="M11.196 9.714q0 .232-.18.41L4 17.145l7.017 7.017q.18.18.18.412t-.18.41l-.893.894q-.18.18-.41.18t-.412-.18l-8.32-8.32q-.18-.18-.18-.412t.18-.41L9.3 8.41q.18-.18.41-.18t.412.18l.893.893q.18.18.18.41z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="11" height="32" viewBox="0 0 11 32" class="icon icon-angle-right"><path d="M10.625 17.143q0 .232-.18.41l-8.32 8.322q-.18.18-.41.18t-.412-.18l-.893-.893q-.18-.18-.18-.41t.18-.412l7.018-7.018L.41 10.124q-.18-.18-.18-.41T.41 9.3l.893-.893q.18-.18.41-.18t.412.18l8.32 8.32q.18.18.18.41z"/></svg>
@@ -0,0 +1 @@
1
+ <svg class="icon icon-pencil" width="32" height="32" viewBox="0 0 32 32"><path d="M12 20l4-2L30 4l-2-2-14 14-2 4zm-2.96 7.097c-.988-2.085-2.05-3.15-4.136-4.137L8 14.435 12 12 24 0h-6L6 12 0 32l20-6 12-12V8L20 20l-2.434 4z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="23" height="32" viewBox="0 0 23 32" class="icon icon-bookmark"><path d="M20.57 4.57H2.286v22.18l9.143-8.768 1.59 1.518 7.553 7.25V4.57zm.216-2.284q.41 0 .786.16.59.233.938.733t.348 1.106v23.018q0 .607-.348 1.107t-.938.733q-.34.143-.786.143-.857 0-1.482-.57l-7.875-7.572-7.876 7.57q-.643.59-1.482.59-.41 0-.786-.16-.59-.233-.938-.733T0 27.305V4.286Q0 3.68.348 3.18t.938-.733q.375-.16.786-.16h18.714z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-code" width="28" height="32" viewBox="0 0 28 32"><path d="M26.7 7.2C26 6.2 25 5.1 24 4s-2.2-2-3.1-2.7C19.2.1 18.4 0 18 0H2.5C1.1 0 0 1.1 0 2.5v27C0 30.9 1.1 32 2.5 32h23c1.4 0 2.5-1.1 2.5-2.5V10c0-.4-.1-1.2-1.3-2.8zm-4.2-1.7c1 1 1.7 1.8 2.3 2.5H20V3.2c.7.5 1.6 1.3 2.5 2.3zm3.5 24c0 .3-.2.5-.5.5h-23c-.3 0-.5-.2-.5-.5v-27c0-.3.2-.5.5-.5H18v7c0 .6.4 1 1 1h7v19.5z"/><path d="M16.8 24.2l1.4 1.4 4.5-4.5-4.5-4.5-1.4 1.4 3.2 3-3.2 3.2zm-5.6-6.4l-1.4-1.4L5.3 21l4.5 4.5 1.4-1.4L8 21l3.2-3.2zm3.7-2l1 .3-2.7 10.1-1-.3 2.7-10.1z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" class="icon icon-codepen"><path d="M29.555 11.5l-14-9.332c-.336-.224-.774-.224-1.11 0l-14 9.333c-.277.186-.444.5-.444.833v9.333c0 .334.168.647.446.832l14 9.333c.168.113.36.17.555.17s.388-.057.556-.17l14-9.332c.278-.185.445-.498.445-.832v-9.333c0-.334-.166-.647-.444-.832zM15 20.466L9.803 17 15 13.535 20.197 17 15 20.465zm1-8.667v-6.93l11.197 7.465L22 15.798l-6-4zm-2 0l-6 4-5.197-3.465L14 4.868v6.93zM6.197 17L2 19.798v-5.596L6.197 17zM8 18.202l6 4v6.93L2.803 21.667 8 18.202zm8 4l6-4 5.197 3.465L16 29.132v-6.93zM23.803 17L28 14.202v5.596L23.803 17z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" class="icon icon-github"><path d="M16 0C7.2 0 0 7.3 0 16.4 0 23.7 4.6 29.8 10.9 32c.8.2 1.1-.4 1.1-.8v-3.1c-4.5 1-5.4-1.9-5.4-1.9-.7-1.9-1.8-2.4-1.8-2.4-1.5-1 .1-1 .1-1 1.6.1 2.5 1.7 2.5 1.7 1.4 2.5 3.7 1.8 4.7 1.4.1-1.1.6-1.8 1-2.2-3.6-.4-7.3-1.8-7.3-8.1 0-1.8.6-3.3 1.7-4.4-.2-.4-.7-2.1.2-4.3 0 0 1.3-.4 4.4 1.7 1.3-.4 2.6-.5 4-.6 1.4 0 2.7.2 4 .6 3.1-2.1 4.4-1.7 4.4-1.7.9 2.3.3 3.9.2 4.3 1 1.1 1.6 2.6 1.6 4.4 0 6.3-3.7 7.7-7.3 8.1.6.5 1.1 1.5 1.1 3v4.5c0 .4.3.9 1.1.8C27.4 29.8 32 23.6 32 16.4 32 7.3 24.8 0 16 0z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" class="icon icon-instagram"><path d="M16 2.88c4.275 0 4.78.02 6.462.095 1.563.07 2.406.33 2.97.55.743.288 1.28.638 1.836 1.194.563.562.906 1.093 1.2 1.837.22.563.48 1.412.55 2.97.075 1.687.094 2.193.094 6.462s-.02 4.78-.094 6.462c-.07 1.563-.33 2.406-.55 2.97-.288.743-.637 1.28-1.194 1.836-.563.563-1.094.906-1.837 1.2-.563.22-1.413.48-2.97.55-1.687.075-2.193.094-6.462.094s-4.78-.02-6.463-.094c-1.563-.07-2.406-.33-2.97-.55-.743-.288-1.28-.637-1.837-1.194-.563-.563-.906-1.094-1.2-1.837-.22-.563-.48-1.413-.55-2.97-.075-1.687-.094-2.193-.094-6.462s.02-4.78.095-6.463c.07-1.563.33-2.406.55-2.97.288-.743.638-1.28 1.194-1.837.562-.563 1.093-.906 1.837-1.2.563-.22 1.412-.48 2.97-.55 1.68-.075 2.187-.094 6.462-.094zM16 0c-4.344 0-4.887.02-6.594.094-1.7.075-2.87.35-3.88.744-1.057.412-1.95.956-2.838 1.85-.894.888-1.438 1.78-1.85 2.83C.444 6.54.168 7.7.094 9.4.02 11.113 0 11.656 0 16s.02 4.887.094 6.594c.075 1.7.35 2.87.744 3.88.413 1.057.956 1.95 1.85 2.838.887.887 1.78 1.438 2.83 1.844 1.02.394 2.182.67 3.882.744 1.706.075 2.25.094 6.594.094s4.888-.02 6.594-.094c1.7-.075 2.87-.35 3.88-.744 1.05-.406 1.945-.956 2.832-1.844s1.438-1.78 1.844-2.83c.394-1.02.67-2.182.744-3.882.075-1.706.094-2.25.094-6.594s-.02-4.887-.094-6.594c-.075-1.7-.35-2.87-.744-3.88-.394-1.064-.938-1.957-1.83-2.845C28.425 1.8 27.53 1.25 26.48.843c-1.02-.394-2.18-.67-3.88-.744C20.888.017 20.344 0 16 0z"/><path d="M16 7.78c-4.537 0-8.22 3.682-8.22 8.22s3.682 8.22 8.22 8.22 8.22-3.682 8.22-8.22c0-4.537-3.682-8.22-8.22-8.22zm0 13.55c-2.944 0-5.33-2.386-5.33-5.33s2.386-5.33 5.33-5.33 5.33 2.386 5.33 5.33-2.386 5.33-5.33 5.33zM26.462 7.456c0 1.06-.86 1.92-1.92 1.92s-1.918-.86-1.918-1.92.86-1.92 1.92-1.92 1.918.86 1.918 1.92z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" class="icon icon-link"><path d="M13.757 19.868c-.416 0-.832-.16-1.15-.476-2.972-2.973-2.972-7.81 0-10.783l6-6C20.048 1.17 21.964.375 24 .375s3.95.793 5.392 2.233c2.973 2.972 2.973 7.81 0 10.782l-2.743 2.743c-.636.635-1.664.635-2.3 0s-.634-1.663 0-2.298l2.744-2.743c1.706-1.706 1.706-4.48 0-6.187-.826-.826-1.925-1.28-3.094-1.28s-2.267.454-3.094 1.28l-6 6c-1.706 1.706-1.706 4.48 0 6.187.635.635.635 1.663 0 2.298-.317.317-.733.476-1.15.476z"/><path d="M8 31.625c-2.037 0-3.952-.793-5.392-2.233-2.973-2.973-2.973-7.81 0-10.783l2.743-2.744c.636-.635 1.665-.635 2.3 0s.634 1.663 0 2.298l-2.744 2.743c-1.706 1.706-1.706 4.48 0 6.187.826.826 1.925 1.28 3.094 1.28s2.267-.454 3.094-1.28l6-6c1.706-1.706 1.706-4.48 0-6.187-.635-.635-.635-1.663 0-2.298s1.663-.636 2.298 0c2.973 2.972 2.973 7.81 0 10.782l-6 6c-1.44 1.44-3.355 2.233-5.392 2.233z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40.7" height="32" viewBox="0 0 40.7 32" class="icon icon-mail"><path d="M37.8 28.4V10.9c-.5.5-1 1-1.6 1.5-3.2 2.5-6.5 5-9.7 7.7-1.7 1.4-3.8 3.2-6.2 3.2-2.4 0-4.5-1.7-6.2-3.2-3.2-2.6-6.4-5.2-9.7-7.7-.6-.5-1.1-1-1.6-1.5v17.5c0 .4.3.7.7.7H37c.5 0 .8-.3.8-.7zm0-23.9c0-.6.1-1.6-.7-1.6H3.6c-.4 0-.7.3-.7.7 0 2.6 1.3 4.8 3.3 6.5 3 2.4 6.1 4.8 9.1 7.2 1.2 1 3.4 3.1 5 3.1s3.8-2.1 5-3.1c3-2.4 6.1-4.8 9.1-7.2 1.6-1.2 3.4-3.7 3.4-5.6zm2.9-.9v24.7c0 2-1.6 3.6-3.6 3.6H3.6c-2 0-3.6-1.6-3.6-3.6V3.6C0 1.6 1.6 0 3.6 0h33.5c2 0 3.6 1.6 3.6 3.6z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" class="icon icon-map-signs"><path d="M31.16 5.304q.18.18.18.41t-.18.412l-2.517 2.518q-.5.5-1.214.5h-24q-.465 0-.805-.34t-.34-.803V3.43q0-.464.34-.804t.804-.34h10.285V1.145q0-.464.34-.804t.803-.34h2.286q.464 0 .804.34t.34.804v1.143h9.142q.714 0 1.214.5zm-17.446 16.41h4.57v9.143q0 .464-.338.804t-.804.34h-2.286q-.464 0-.804-.34t-.34-.803v-9.143zm14.857-8q.465 0 .805.34t.34.803v4.57q0 .465-.34.805t-.804.34h-24q-.713 0-1.213-.5L.84 17.55q-.18-.178-.18-.41t.18-.41l2.517-2.52q.5-.5 1.214-.5h9.144v-3.428h4.57v3.43h10.287z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" class="icon icon-map"><path d="M9.143 0q.232 0 .402.17t.17.402v26.286q0 .357-.304.5l-8.57 4.57Q.715 32 .572 32q-.232 0-.402-.17T0 31.428V5.142q0-.357.304-.5l8.57-4.57Q9 0 9.145 0zM31.43 0q.23 0 .4.17t.17.402v26.286q0 .357-.303.5l-8.57 4.57Q23 32 22.856 32q-.23 0-.4-.17t-.17-.402V5.142q0-.357.303-.5l8.57-4.57Q31.287 0 31.43 0zm-20 0q.142 0 .25.054l9.142 4.57q.32.18.32.52v26.285q0 .23-.17.4t-.4.17q-.144 0-.25-.053l-9.144-4.57q-.32-.18-.32-.52V.573q0-.232.17-.402t.4-.17z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" class="icon icon-marker"><path d="M16 0C10.477 0 6 4.477 6 10c0 10 10 22 10 22s10-12 10-22c0-5.523-4.477-10-10-10zm0 16c-3.314 0-6-2.686-6-6s2.686-6 6-6 6 2.686 6 6-2.686 6-6 6z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" class="icon icon-menu"><path d="M2 6h28v6H2zm0 8h28v6H2zm0 8h28v6H2z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="27" height="32" viewBox="0 0 27 32" class="icon icon-music"><path d="M27.43 4v20q0 .893-.608 1.59t-1.536 1.08-1.848.57-1.723.188-1.723-.188-1.848-.57-1.536-1.08T16 24t.608-1.59 1.536-1.08 1.848-.57 1.723-.188q1.875 0 3.43.696v-9.59L11.43 15.912v12.662q0 .893-.607 1.59t-1.536 1.08-1.848.57T5.715 32t-1.723-.188-1.848-.57T.61 30.16 0 28.57t.607-1.59 1.535-1.08 1.848-.57 1.723-.188q1.875 0 3.43.696V8.572q0-.554.338-1.01t.875-.633l14.856-4.572q.214-.07.5-.07.714 0 1.214.5T27.43 4z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="27" height="32" viewBox="0 0 27 32" class="icon icon-pause"><path d="M27.43 3.43V28.57q0 .464-.34.804t-.804.34h-9.143q-.464 0-.804-.34t-.34-.804V3.43q0-.465.34-.805t.803-.34h9.143q.464 0 .804.34t.34.804zm-16 0V28.57q0 .464-.34.804t-.804.34H1.143q-.464 0-.804-.34T0 28.572V3.43q0-.465.34-.805t.803-.34h9.143q.464 0 .804.34t.34.804z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="25" height="32" viewBox="0 0 25 32" class="icon icon-play"><path d="M24.714 16.554L1 29.734q-.41.23-.705.053T0 29.144V2.858q0-.464.295-.643T1 2.27l23.714 13.178q.41.232.41.554t-.41.554z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" class="icon icon-rss"><path d="M4.26 23.467C1.91 23.467 0 25.384 0 27.72c0 2.348 1.91 4.243 4.26 4.243 2.357 0 4.264-1.895 4.264-4.244 0-2.337-1.907-4.253-4.265-4.253zM.004 10.873v6.133c3.993 0 7.75 1.562 10.577 4.39 2.825 2.823 4.384 6.596 4.384 10.604h6.16c0-11.65-9.478-21.127-21.12-21.127zM.012 0v6.136C14.255 6.136 25.848 17.74 25.848 32H32C32 14.36 17.648 0 .012 0z"/></svg>