jekyll-octopod-bulma 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/LICENSE.txt +21 -0
- data/README.md +41 -0
- data/_includes/disqus_count.html +13 -0
- data/_includes/disqus_thread.html +13 -0
- data/_includes/isso_thread.html +6 -0
- data/_includes/post.html +24 -0
- data/_includes/post_header.html +17 -0
- data/_includes/post_line.html +3 -0
- data/_includes/sidebar.html +106 -0
- data/_layouts/default.html +83 -0
- data/_layouts/feed.xml +114 -0
- data/_layouts/jsonfeed.json +52 -0
- data/_layouts/page.html +15 -0
- data/_layouts/player_index.html +36 -0
- data/_layouts/post.html +10 -0
- data/_sass/_presets.scss +1 -0
- data/_sass/_syntax-highlighting.scss +75 -0
- data/_sass/bulma.scss +4 -0
- data/_sass/line-awesome/scss/_bordered_pulled.scss +23 -0
- data/_sass/line-awesome/scss/_core.scss +11 -0
- data/_sass/line-awesome/scss/_fixed-width.scss +6 -0
- data/_sass/line-awesome/scss/_icons.scss +1395 -0
- data/_sass/line-awesome/scss/_larger.scss +24 -0
- data/_sass/line-awesome/scss/_list.scss +22 -0
- data/_sass/line-awesome/scss/_mixins.scss +32 -0
- data/_sass/line-awesome/scss/_path.scss +55 -0
- data/_sass/line-awesome/scss/_rotated-flipped.scss +101 -0
- data/_sass/line-awesome/scss/_screen-reader.scss +4 -0
- data/_sass/line-awesome/scss/_stacked.scss +30 -0
- data/_sass/line-awesome/scss/_variables.scss +1419 -0
- data/_sass/line-awesome/scss/line-awesome.scss +12 -0
- data/_sass/sass/_index.scss +10 -0
- data/_sass/sass/base/_index.scss +6 -0
- data/_sass/sass/base/animations.scss +15 -0
- data/_sass/sass/base/generic.scss +240 -0
- data/_sass/sass/base/minireset.scss +92 -0
- data/_sass/sass/base/skeleton.scss +114 -0
- data/_sass/sass/components/_index.scss +13 -0
- data/_sass/sass/components/breadcrumb.scss +139 -0
- data/_sass/sass/components/card.scss +162 -0
- data/_sass/sass/components/dropdown.scss +188 -0
- data/_sass/sass/components/menu.scss +165 -0
- data/_sass/sass/components/message.scss +183 -0
- data/_sass/sass/components/modal.scss +164 -0
- data/_sass/sass/components/navbar.scss +799 -0
- data/_sass/sass/components/pagination.scss +379 -0
- data/_sass/sass/components/panel.scss +218 -0
- data/_sass/sass/components/tabs.scss +273 -0
- data/_sass/sass/elements/_index.scss +16 -0
- data/_sass/sass/elements/block.scss +6 -0
- data/_sass/sass/elements/box.scss +59 -0
- data/_sass/sass/elements/button.scss +659 -0
- data/_sass/sass/elements/content.scss +289 -0
- data/_sass/sass/elements/delete.scss +6 -0
- data/_sass/sass/elements/icon.scss +67 -0
- data/_sass/sass/elements/image.scss +64 -0
- data/_sass/sass/elements/loader.scss +15 -0
- data/_sass/sass/elements/notification.scss +105 -0
- data/_sass/sass/elements/progress.scss +115 -0
- data/_sass/sass/elements/table.scss +261 -0
- data/_sass/sass/elements/tag.scss +219 -0
- data/_sass/sass/elements/title.scss +130 -0
- data/_sass/sass/form/_index.scss +9 -0
- data/_sass/sass/form/checkbox-radio.scss +36 -0
- data/_sass/sass/form/file.scss +330 -0
- data/_sass/sass/form/input-textarea.scss +115 -0
- data/_sass/sass/form/select.scss +144 -0
- data/_sass/sass/form/shared.scss +178 -0
- data/_sass/sass/form/tools.scss +352 -0
- data/_sass/sass/grid/_index.scss +5 -0
- data/_sass/sass/grid/columns.scss +961 -0
- data/_sass/sass/grid/grid.scss +209 -0
- data/_sass/sass/helpers/_index.scss +15 -0
- data/_sass/sass/helpers/aspect-ratio.scss +12 -0
- data/_sass/sass/helpers/border.scss +15 -0
- data/_sass/sass/helpers/color.scss +344 -0
- data/_sass/sass/helpers/flexbox.scss +62 -0
- data/_sass/sass/helpers/float.scss +28 -0
- data/_sass/sass/helpers/gap.scss +24 -0
- data/_sass/sass/helpers/other.scss +19 -0
- data/_sass/sass/helpers/overflow.scss +21 -0
- data/_sass/sass/helpers/position.scss +19 -0
- data/_sass/sass/helpers/spacing.scss +64 -0
- data/_sass/sass/helpers/typography.scss +174 -0
- data/_sass/sass/helpers/visibility.scss +221 -0
- data/_sass/sass/layout/_index.scss +9 -0
- data/_sass/sass/layout/container.scss +59 -0
- data/_sass/sass/layout/footer.scss +23 -0
- data/_sass/sass/layout/hero.scss +273 -0
- data/_sass/sass/layout/level.scss +107 -0
- data/_sass/sass/layout/media.scss +106 -0
- data/_sass/sass/layout/section.scss +38 -0
- data/_sass/sass/themes/_index.scss +36 -0
- data/_sass/sass/themes/dark.scss +57 -0
- data/_sass/sass/themes/light.scss +147 -0
- data/_sass/sass/themes/setup.scss +174 -0
- data/_sass/sass/utilities/_index.scss +7 -0
- data/_sass/sass/utilities/controls.scss +85 -0
- data/_sass/sass/utilities/css-variables.scss +502 -0
- data/_sass/sass/utilities/derived-variables.scss +112 -0
- data/_sass/sass/utilities/extends.scss +34 -0
- data/_sass/sass/utilities/functions.scss +310 -0
- data/_sass/sass/utilities/initial-variables.scss +157 -0
- data/_sass/sass/utilities/mixins.scss +462 -0
- data/assets/apple-touch-icon-precomposed.png +0 -0
- data/assets/css/main.scss +10 -0
- data/assets/css/ubuntu.css +8 -0
- data/assets/favicon.ico +0 -0
- data/assets/fonts/line-awesome/la-brands-400.eot +0 -0
- data/assets/fonts/line-awesome/la-brands-400.svg +1313 -0
- data/assets/fonts/line-awesome/la-brands-400.ttf +0 -0
- data/assets/fonts/line-awesome/la-brands-400.woff +0 -0
- data/assets/fonts/line-awesome/la-brands-400.woff2 +0 -0
- data/assets/fonts/line-awesome/la-regular-400.eot +0 -0
- data/assets/fonts/line-awesome/la-regular-400.svg +467 -0
- data/assets/fonts/line-awesome/la-regular-400.ttf +0 -0
- data/assets/fonts/line-awesome/la-regular-400.woff +0 -0
- data/assets/fonts/line-awesome/la-regular-400.woff2 +0 -0
- data/assets/fonts/line-awesome/la-solid-900.eot +0 -0
- data/assets/fonts/line-awesome/la-solid-900.svg +2894 -0
- data/assets/fonts/line-awesome/la-solid-900.ttf +0 -0
- data/assets/fonts/line-awesome/la-solid-900.woff +0 -0
- data/assets/fonts/line-awesome/la-solid-900.woff2 +0 -0
- data/assets/fonts/ubuntu/ubuntu-v11-latin-ext_latin-regular.woff +0 -0
- data/assets/fonts/ubuntu/ubuntu-v11-latin-ext_latin-regular.woff2 +0 -0
- data/assets/img/favicon.ico +0 -0
- data/assets/img/logo/android-icon-144x144.png +0 -0
- data/assets/img/logo/android-icon-192x192.png +0 -0
- data/assets/img/logo/android-icon-36x36.png +0 -0
- data/assets/img/logo/android-icon-48x48.png +0 -0
- data/assets/img/logo/android-icon-72x72.png +0 -0
- data/assets/img/logo/android-icon-96x96.png +0 -0
- data/assets/img/logo/apple-icon-114x114.png +0 -0
- data/assets/img/logo/apple-icon-120x120.png +0 -0
- data/assets/img/logo/apple-icon-144x144.png +0 -0
- data/assets/img/logo/apple-icon-152x152.png +0 -0
- data/assets/img/logo/apple-icon-180x180.png +0 -0
- data/assets/img/logo/apple-icon-57x57.png +0 -0
- data/assets/img/logo/apple-icon-60x60.png +0 -0
- data/assets/img/logo/apple-icon-72x72.png +0 -0
- data/assets/img/logo/apple-icon-76x76.png +0 -0
- data/assets/img/logo/apple-icon-precomposed.png +0 -0
- data/assets/img/logo/apple-icon.png +0 -0
- data/assets/img/logo/browserconfig.xml +2 -0
- data/assets/img/logo/favicon-16x16.png +0 -0
- data/assets/img/logo/favicon-32x32.png +0 -0
- data/assets/img/logo/favicon-96x96.png +0 -0
- data/assets/img/logo/favicon.ico +0 -0
- data/assets/img/logo/manifest.json +41 -0
- data/assets/img/logo/ms-icon-144x144.png +0 -0
- data/assets/img/logo/ms-icon-150x150.png +0 -0
- data/assets/img/logo/ms-icon-310x310.png +0 -0
- data/assets/img/logo/ms-icon-70x70.png +0 -0
- data/assets/img/logo-360x360.png +0 -0
- data/assets/img/logo-itunes.jpg +0 -0
- data/assets/img/logo.jpg +0 -0
- data/assets/js/dropdown.js +13 -0
- data/assets/podlove-player/5.13.0/player/395.js +2 -0
- data/assets/podlove-player/5.13.0/player/395.js.LICENSE.txt +1 -0
- data/assets/podlove-player/5.13.0/player/424.js +2 -0
- data/assets/podlove-player/5.13.0/player/424.js.LICENSE.txt +1 -0
- data/assets/podlove-player/5.13.0/player/514.js +2 -0
- data/assets/podlove-player/5.13.0/player/514.js.LICENSE.txt +1 -0
- data/assets/podlove-player/5.13.0/player/712.js +2 -0
- data/assets/podlove-player/5.13.0/player/712.js.LICENSE.txt +1 -0
- data/assets/podlove-player/5.13.0/player/872.js +2 -0
- data/assets/podlove-player/5.13.0/player/872.js.LICENSE.txt +1 -0
- data/assets/podlove-player/5.13.0/player/882.js +2 -0
- data/assets/podlove-player/5.13.0/player/882.js.LICENSE.txt +1 -0
- data/assets/podlove-player/5.13.0/player/932.js +2 -0
- data/assets/podlove-player/5.13.0/player/932.js.LICENSE.txt +1 -0
- data/assets/podlove-player/5.13.0/player/bootstrap.js +2 -0
- data/assets/podlove-player/5.13.0/player/bootstrap.js.LICENSE.txt +1 -0
- data/assets/podlove-player/5.13.0/player/styles.css +2 -0
- data/assets/podlove-player/5.13.0/player/styles.js +2 -0
- data/assets/podlove-player/5.13.0/player/styles.js.LICENSE.txt +1 -0
- data/assets/podlove-player/5.13.0/player/vendor.js +2 -0
- data/assets/podlove-player/5.13.0/player/vendor.js.LICENSE.txt +49 -0
- data/assets/podlove-player/embed.js +2 -0
- data/assets/podlove-player/embed.js.LICENSE.txt +3 -0
- data/assets/podlove-player/variant-l.js +2 -0
- data/assets/podlove-player/variant-l.js.LICENSE.txt +1 -0
- data/assets/podlove-player/variant-m.js +2 -0
- data/assets/podlove-player/variant-m.js.LICENSE.txt +1 -0
- data/assets/podlove-player/variant-xl.js +2 -0
- data/assets/podlove-player/variant-xl.js.LICENSE.txt +1 -0
- data/assets/subscribe-button/button.html +15 -0
- data/assets/subscribe-button/fonts/podlove/Podlove.eot +0 -0
- data/assets/subscribe-button/fonts/podlove/Podlove.svg +16 -0
- data/assets/subscribe-button/fonts/podlove/Podlove.ttf +0 -0
- data/assets/subscribe-button/fonts/podlove/Podlove.woff +0 -0
- data/assets/subscribe-button/fonts/roboto_light/Roboto-Light-webfont.eot +0 -0
- data/assets/subscribe-button/fonts/roboto_light/Roboto-Light-webfont.svg +312 -0
- data/assets/subscribe-button/fonts/roboto_light/Roboto-Light-webfont.ttf +0 -0
- data/assets/subscribe-button/fonts/roboto_light/Roboto-Light-webfont.woff +0 -0
- data/assets/subscribe-button/fonts/roboto_medium/Roboto-Medium-webfont.eot +0 -0
- data/assets/subscribe-button/fonts/roboto_medium/Roboto-Medium-webfont.svg +305 -0
- data/assets/subscribe-button/fonts/roboto_medium/Roboto-Medium-webfont.ttf +0 -0
- data/assets/subscribe-button/fonts/roboto_medium/Roboto-Medium-webfont.woff +0 -0
- data/assets/subscribe-button/images/android/acast.png +0 -0
- data/assets/subscribe-button/images/android/antennapod.png +0 -0
- data/assets/subscribe-button/images/android/beyondpod.png +0 -0
- data/assets/subscribe-button/images/android/chakouat.png +0 -0
- data/assets/subscribe-button/images/android/doggcatcher.png +0 -0
- data/assets/subscribe-button/images/android/playerfm.png +0 -0
- data/assets/subscribe-button/images/android/pocketcasts.png +0 -0
- data/assets/subscribe-button/images/android/podcastaddict.png +0 -0
- data/assets/subscribe-button/images/android/podcastrepublic.png +0 -0
- data/assets/subscribe-button/images/android/podcatcher-deluxe.png +0 -0
- data/assets/subscribe-button/images/android/podkicker.png +0 -0
- data/assets/subscribe-button/images/android/shortorange.png +0 -0
- data/assets/subscribe-button/images/android/upod.png +0 -0
- data/assets/subscribe-button/images/blackberry/bpod.png +0 -0
- data/assets/subscribe-button/images/blackberry/gpodder.png +0 -0
- data/assets/subscribe-button/images/cloud/gpoddernet.png +0 -0
- data/assets/subscribe-button/images/cloud/instacastcloud.png +0 -0
- data/assets/subscribe-button/images/cloud/playerfm.png +0 -0
- data/assets/subscribe-button/images/cloud/pocketcasts.png +0 -0
- data/assets/subscribe-button/images/cloud/shortorange.png +0 -0
- data/assets/subscribe-button/images/generic/android.png +0 -0
- data/assets/subscribe-button/images/generic/rss.png +0 -0
- data/assets/subscribe-button/images/generic/windows.png +0 -0
- data/assets/subscribe-button/images/generic/windows8.png +0 -0
- data/assets/subscribe-button/images/generic/windowsphone.png +0 -0
- data/assets/subscribe-button/images/icon-big.png +0 -0
- data/assets/subscribe-button/images/icon-big@2x.png +0 -0
- data/assets/subscribe-button/images/icon-medium.png +0 -0
- data/assets/subscribe-button/images/icon-medium@2x.png +0 -0
- data/assets/subscribe-button/images/icon-small.png +0 -0
- data/assets/subscribe-button/images/icon-small@2x.png +0 -0
- data/assets/subscribe-button/images/icon.svg +32 -0
- data/assets/subscribe-button/images/ios/castro.png +0 -0
- data/assets/subscribe-button/images/ios/downcast.png +0 -0
- data/assets/subscribe-button/images/ios/icatcher.png +0 -0
- data/assets/subscribe-button/images/ios/instacast.png +0 -0
- data/assets/subscribe-button/images/ios/overcast.png +0 -0
- data/assets/subscribe-button/images/ios/pocketcasts.png +0 -0
- data/assets/subscribe-button/images/ios/podcasts.png +0 -0
- data/assets/subscribe-button/images/ios/podcat.png +0 -0
- data/assets/subscribe-button/images/ios/podgrasp.png +0 -0
- data/assets/subscribe-button/images/ios/podwrangler.png +0 -0
- data/assets/subscribe-button/images/ios/rssradio.png +0 -0
- data/assets/subscribe-button/images/ios/shortorange.png +0 -0
- data/assets/subscribe-button/images/ios/sleekcast.png +0 -0
- data/assets/subscribe-button/images/linux/clementine.png +0 -0
- data/assets/subscribe-button/images/linux/gpodder.png +0 -0
- data/assets/subscribe-button/images/linux/miro.png +0 -0
- data/assets/subscribe-button/images/osx/downcast.png +0 -0
- data/assets/subscribe-button/images/osx/gpodder.png +0 -0
- data/assets/subscribe-button/images/osx/instacast.png +0 -0
- data/assets/subscribe-button/images/osx/itunes.png +0 -0
- data/assets/subscribe-button/images/osx/miro.png +0 -0
- data/assets/subscribe-button/images/osx/podgrasp.png +0 -0
- data/assets/subscribe-button/images/osx/podsnatcher.png +0 -0
- data/assets/subscribe-button/images/podlove.svg +45 -0
- data/assets/subscribe-button/images/stores/android.png +0 -0
- data/assets/subscribe-button/images/stores/apple-app-store-en.png +0 -0
- data/assets/subscribe-button/images/stores/apple-app-store-en.svg +129 -0
- data/assets/subscribe-button/images/stores/blackberry-world-en.png +0 -0
- data/assets/subscribe-button/images/stores/google-play-en.png +0 -0
- data/assets/subscribe-button/images/stores/google-play-en.svg +126 -0
- data/assets/subscribe-button/images/stores/google-play-en@1x.svg +126 -0
- data/assets/subscribe-button/images/stores/ios.png +0 -0
- data/assets/subscribe-button/images/stores/osx.png +0 -0
- data/assets/subscribe-button/images/stores/windows-phone-store-en.png +0 -0
- data/assets/subscribe-button/images/stores/windows-phone-store-en.svg +40 -0
- data/assets/subscribe-button/images/stores/windows-store-en.png +0 -0
- data/assets/subscribe-button/images/stores/windows-store-en.svg +61 -0
- data/assets/subscribe-button/images/stores/windows8.png +0 -0
- data/assets/subscribe-button/images/stores/windows81.png +0 -0
- data/assets/subscribe-button/images/stores/windowsphone.png +0 -0
- data/assets/subscribe-button/images/windows/gpodder.png +0 -0
- data/assets/subscribe-button/images/windows/itunes.png +0 -0
- data/assets/subscribe-button/images/windows/miro.png +0 -0
- data/assets/subscribe-button/images/windows/podscout.png +0 -0
- data/assets/subscribe-button/images/windowsphone/bringcast.png +0 -0
- data/assets/subscribe-button/images/windowsphone/gramocast.png +0 -0
- data/assets/subscribe-button/images/windowsphone/ipodcast.png +0 -0
- data/assets/subscribe-button/images/windowsphone/pcast.png +0 -0
- data/assets/subscribe-button/images/windowsphone/podcastbrain.png +0 -0
- data/assets/subscribe-button/images/windowsphone/podcastlounge.png +0 -0
- data/assets/subscribe-button/images/windowsphone/podcastpicker.png +0 -0
- data/assets/subscribe-button/images/windowsphone/podcasts.png +0 -0
- data/assets/subscribe-button/images/windowsphone/podcastspro.png +0 -0
- data/assets/subscribe-button/images/windowsphone/wpodder.png +0 -0
- data/assets/subscribe-button/javascripts/app.js +6 -0
- data/assets/subscribe-button/javascripts/app.js.gz +0 -0
- data/assets/subscribe-button/stylesheets/app.css +552 -0
- data/assets/subscribe-button/stylesheets/app.css.gz +0 -0
- data/assets/subscribe-button/stylesheets/app.css.map +1 -0
- data/assets/subscribe-button/stylesheets/app.css.map.gz +0 -0
- metadata +293 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d9bf24ffd8d9e5edd8d066f1d58750542dbd9eac5231a932a941b28037f66d49
|
|
4
|
+
data.tar.gz: 3074a92d49f57621a895dc33f818cf119798df0051a9c3273ccc3edc2f0c2547
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 212adce6af7e4f2fcac79f07840aa106834ba4b1aa2e4fb8afdb80e6c21e79f34a0a2c5e99719964d30179e72a334d61ded89e66e0f151083df55a828a83ac18
|
|
7
|
+
data.tar.gz: cd23f31f476d84b754f169b9c25085b365011bfcb98471ab407da3bd4423abb474e3d36dd7be33d5f0c93d63491dc6cd971f7147803c9a3a4f58cb7272a13a5f
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Stefan Haslinger
|
|
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,41 @@
|
|
|
1
|
+
# jekyll-octopod-bulma
|
|
2
|
+
|
|
3
|
+
jekyll-octopod-bulma is a gem-based Jekyll theme: the sidebar-layout look of
|
|
4
|
+
[jekyll-octopod](https://jekyll-octopod.github.io/), served straight from the gem instead of
|
|
5
|
+
being copied into every podcast site.
|
|
6
|
+
|
|
7
|
+
It's a fork of [jekyll-bulma](https://github.com/jekyll-octopod/jekyll-bulma) — same Bulma +
|
|
8
|
+
Line Awesome foundation (`_sass`, `assets/css`, `assets/js`, `assets/fonts`) — with jekyll-bulma's
|
|
9
|
+
generic demo layouts/includes replaced by octopod's own sidebar layout, post/feed layouts, and
|
|
10
|
+
vendored podcast assets (Podlove web player, podcast subscribe button, default logo/favicons).
|
|
11
|
+
It does not depend on the `jekyll-bulma` gem at runtime; the two diverge from this fork point on.
|
|
12
|
+
|
|
13
|
+
## Requirements
|
|
14
|
+
|
|
15
|
+
Like jekyll-bulma, this bundles Bulma 1.x, which needs
|
|
16
|
+
[jekyll-sass-converter](https://github.com/jekyll/jekyll-sass-converter) 3.x (Dart Sass). Older
|
|
17
|
+
1.x/2.x (LibSass-based) converters can't build this theme.
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
Add to your site's `Gemfile`:
|
|
22
|
+
|
|
23
|
+
```ruby
|
|
24
|
+
gem "jekyll-octopod-bulma", "~> 0.1"
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
And in `_config.yml`:
|
|
28
|
+
|
|
29
|
+
```yaml
|
|
30
|
+
theme: jekyll-octopod-bulma
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Any file your site places at the same relative path (e.g. your own `_sass/_overrides.scss`,
|
|
34
|
+
`assets/img/logo.jpg`) shadows the gem's copy — no per-site copy step needed for the theme itself.
|
|
35
|
+
See [jekyll-octopod](https://jekyll-octopod.github.io/) for the full podcast-site setup, which
|
|
36
|
+
supplies this theme plus the podcast-specific plugin code (feed/page generators) as a separate
|
|
37
|
+
gem.
|
|
38
|
+
|
|
39
|
+
## License
|
|
40
|
+
|
|
41
|
+
MIT, see [LICENSE.txt](LICENSE.txt).
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{% if site.disqus_shortname %}
|
|
2
|
+
<a class="button is-dark is-pulled-right" href="{{ site.url }}{{ post.url }}#disqus_thread">
|
|
3
|
+
<script type="text/javascript">
|
|
4
|
+
(function () {
|
|
5
|
+
{{ site | disqus_config:post }}
|
|
6
|
+
var s = document.createElement('script'); s.async = true;
|
|
7
|
+
s.type = 'text/javascript';
|
|
8
|
+
s.src = 'https://{{ site.disqus_shortname }}.disqus.com/count.js';
|
|
9
|
+
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
|
|
10
|
+
}());
|
|
11
|
+
</script>
|
|
12
|
+
</a>
|
|
13
|
+
{% endif %}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{% if site.disqus_shortname %}
|
|
2
|
+
<div id="disqus_thread"></div>
|
|
3
|
+
<script type="text/javascript">
|
|
4
|
+
{{ site | disqus_config:post }}
|
|
5
|
+
(function() {
|
|
6
|
+
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
|
7
|
+
dsq.src = 'https://{{ site.disqus_shortname }}.disqus.com/embed.js';
|
|
8
|
+
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
|
9
|
+
})();
|
|
10
|
+
</script>
|
|
11
|
+
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
|
12
|
+
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
|
13
|
+
{% endif %}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{% if site.use_isso == 'yes' %}
|
|
2
|
+
<script data-isso="{{ site.url }}/isso/" src="{{ site.url }}/isso/js/embed.min.js"></script>
|
|
3
|
+
|
|
4
|
+
<section id="isso-thread"></section>
|
|
5
|
+
<noscript>Please enable JavaScript to view the <a href="https://posativ.org/isso">comments powered by Isso.</a></noscript>
|
|
6
|
+
{% endif %}
|
data/_includes/post.html
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{% if post %}
|
|
2
|
+
{% elsif page %}
|
|
3
|
+
{% assign post = page %}
|
|
4
|
+
{% endif %}
|
|
5
|
+
<section id="{{ post.id | sha1:8 }}">
|
|
6
|
+
{% include post_header.html %}
|
|
7
|
+
|
|
8
|
+
{{ post.content }}
|
|
9
|
+
{% if post.audio %}
|
|
10
|
+
{% for file in post.audio %}
|
|
11
|
+
{% if post.filesize %}
|
|
12
|
+
<a class="button is-info"
|
|
13
|
+
href="{{ site | download_url_with_fallback }}/{{ file.last }}">Download .{{ file.first }} ({{ post | size_by_format: file.first | in_megabytes }})</a>
|
|
14
|
+
{% else %}
|
|
15
|
+
<a class="button is-info"
|
|
16
|
+
href="{{ site | download_url_with_fallback }}/{{ file.last }}">Download .{{ file.first }} ({{ file.last | file_size:'./' | string_of_size }})</a>
|
|
17
|
+
{% endif %}
|
|
18
|
+
{% endfor %}
|
|
19
|
+
{% endif %}
|
|
20
|
+
<hr>
|
|
21
|
+
{% unless page.url == '/index.html' %}{% include disqus_thread.html %}{% endunless %}
|
|
22
|
+
{% unless page.url == '/index.html' %}{% include isso_thread.html %}{% endunless %}
|
|
23
|
+
<hr>
|
|
24
|
+
</section>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<div class="block">
|
|
2
|
+
<h1 class="title">
|
|
3
|
+
<a class='episode_title' href='{{ site.url }}{{ post.url }}#{{ post.id | sha1:8 }}'>{{ post.title }}</a>
|
|
4
|
+
</h1>
|
|
5
|
+
<h2 class='subtitle episode_date'>
|
|
6
|
+
{% if site.language == "de" %}
|
|
7
|
+
{{ post.date | full_date_de }}
|
|
8
|
+
{% else %}
|
|
9
|
+
{% if post.datum %}
|
|
10
|
+
{{ post.datum }}
|
|
11
|
+
{% else %}
|
|
12
|
+
{{ post.date }}
|
|
13
|
+
{% endif %}
|
|
14
|
+
{% endif %}
|
|
15
|
+
</h2>
|
|
16
|
+
{% if post.subtitle %}<h2 class="subtitle">{{ post.subtitle }}</h2>{% endif %}
|
|
17
|
+
</div>
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
<div class="block">
|
|
2
|
+
<h3 class="title is-3">
|
|
3
|
+
{{ site.title }}
|
|
4
|
+
</h3>
|
|
5
|
+
{% if site.subtitle %}<h4 class="subtitle is-4">{{ site.subtitle }}</h4>{% endif %}
|
|
6
|
+
</div>
|
|
7
|
+
|
|
8
|
+
<p class="has-text-centered">
|
|
9
|
+
<img width="200px" src="{{ site.url }}/assets/img/logo-360x360.png" alt="{{ site.title }} logo">
|
|
10
|
+
</p>
|
|
11
|
+
|
|
12
|
+
{% if site.description %}<p>{{ site.description }}</p>{% endif %}
|
|
13
|
+
|
|
14
|
+
<script class="podlove-subscribe-button"
|
|
15
|
+
src="/assets/subscribe-button/javascripts/app.js"
|
|
16
|
+
data-language="{{ site.language }}"
|
|
17
|
+
data-size="medium auto"
|
|
18
|
+
data-style="filled"
|
|
19
|
+
data-json-data="podcastData"
|
|
20
|
+
data-colors="#FC6E51;green;blue">
|
|
21
|
+
</script>
|
|
22
|
+
|
|
23
|
+
<script>
|
|
24
|
+
window.podcastData = {
|
|
25
|
+
"title": "{{ site['title']}}",
|
|
26
|
+
"subtitle": "{{ site['subtitle']}}",
|
|
27
|
+
"description": "{{ site['description']}}",
|
|
28
|
+
"cover": "{{ site.url }}/assets/img/logo-360x360.png",
|
|
29
|
+
"feeds": [
|
|
30
|
+
{% for feed in site['episode_feed_formats'] %}
|
|
31
|
+
{
|
|
32
|
+
"type": "audio",
|
|
33
|
+
"format": "{{ feed }}",
|
|
34
|
+
"url": "{{ site['url']}}/episodes.{{ feed }}.rss",
|
|
35
|
+
"directory-url-itunes": "{{ site['itunes_url']}}",
|
|
36
|
+
"variant": "high"
|
|
37
|
+
},
|
|
38
|
+
{% endfor %}
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
</script>
|
|
42
|
+
|
|
43
|
+
<hr/>
|
|
44
|
+
|
|
45
|
+
<h4 class="title is-4">RSS-Feeds</h4>
|
|
46
|
+
|
|
47
|
+
<ol type="i">
|
|
48
|
+
{% for feed in site['episode_feed_formats'] %}
|
|
49
|
+
<li><a href="{{ site['url']}}/episodes.{{ feed }}.rss"><i class="las la-rss"></i> {{ feed }}-RSS-Feed</a></li>
|
|
50
|
+
{% endfor %}
|
|
51
|
+
</ol>
|
|
52
|
+
|
|
53
|
+
<h4 class="title is-4">JSON-Feeds</h4>
|
|
54
|
+
|
|
55
|
+
<ol type="i">
|
|
56
|
+
{% for jsonfeed in site['json_feed_formats'] %}
|
|
57
|
+
<li><a href="{{ site['url']}}/feed.{{ jsonfeed }}.json"><i class="las la-rss-square"></i> {{ jsonfeed }}-JSON-Feed</a></li>
|
|
58
|
+
{% endfor %}
|
|
59
|
+
</ol>
|
|
60
|
+
|
|
61
|
+
<h4 class="title is-4">Directories</h4>
|
|
62
|
+
|
|
63
|
+
<ol type="i">
|
|
64
|
+
{% if site.itunes_url %}
|
|
65
|
+
<li>in Apple-<a href="{{ site.itunes_url }}"><i class="lab la-apple"></i> Itunes</a></li>
|
|
66
|
+
{% endif %}
|
|
67
|
+
{% if site.google_play_url %}
|
|
68
|
+
<li>in <a href="{{ site.google_play_url }}"><i class="lab la-google-play"></i>Google Play</a></li>
|
|
69
|
+
{% endif %}
|
|
70
|
+
{% if site.bitlove_url %}
|
|
71
|
+
<li>as Torrents at <a href="{{ site.bitlove_url }}"><img src="https://bitlove.org/static/favicon.png"/> Bitlove</a></li>
|
|
72
|
+
{% endif %}
|
|
73
|
+
{% if site.fyyd_url %}
|
|
74
|
+
<li>at the podcast search engine <a href="{{ site.fyyd_url }}">Fyyd</a></li>
|
|
75
|
+
{% endif %}
|
|
76
|
+
{% if site.gpodder_url %}
|
|
77
|
+
<li>at <a href="{{ site.gpodder_url }}"><img src="https://gpodder.net/static/gpoddernet_64.png" height="16" /> Gpodder.net</a></li>
|
|
78
|
+
{% endif %}
|
|
79
|
+
</ol>
|
|
80
|
+
|
|
81
|
+
<h4 class="title is-4">Credits</h4>
|
|
82
|
+
|
|
83
|
+
<ul>
|
|
84
|
+
<li>Music: <a href="http://www.bensound.com/royalty-free-music">Bensound</a></li>
|
|
85
|
+
</ul>
|
|
86
|
+
|
|
87
|
+
<h4 class="title is-4">License</h4>
|
|
88
|
+
|
|
89
|
+
{% if site.license_url %}
|
|
90
|
+
<a rel="license" href="{{ site.license_url }}">
|
|
91
|
+
{% if site.license_image_url %}
|
|
92
|
+
<img alt="Creative Commons License" style="border-width:0" src="{{ site.license_image_url }}" />
|
|
93
|
+
{% else %}
|
|
94
|
+
{{ site.license }}
|
|
95
|
+
{% endif %}
|
|
96
|
+
</a>
|
|
97
|
+
{% endif %}
|
|
98
|
+
|
|
99
|
+
<hr/>
|
|
100
|
+
|
|
101
|
+
{% if site.fediverse_url %}
|
|
102
|
+
<a rel="me" href="{{ site.fediverse_url }}"
|
|
103
|
+
class="button is-primary is-small">
|
|
104
|
+
<i class="lab la-mastodon"></i>Follow {{ site.fediverse_url | fediverse_handle }}
|
|
105
|
+
</a>
|
|
106
|
+
{% endif %}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="{{ site.language }}">
|
|
3
|
+
<head>
|
|
4
|
+
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
|
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
6
|
+
<title>{{ site.title }} - {{ page.title | otherwise:site.subtitle }}</title>
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
8
|
+
|
|
9
|
+
{% if site.description %}<meta name="description" content="{{ site.description | markdownify | strip_html }}">{% endif %}
|
|
10
|
+
{% if site.author %}<meta name="author" content="{{ site.author }}">{% endif %}
|
|
11
|
+
|
|
12
|
+
<link rel="alternate" type="application/atom+xml" href="{{ site.url }}/general_feed.xml" title="General Site Atom Feed (No Podcast Metadata!)" />
|
|
13
|
+
{{ site | episode_feeds_html }}
|
|
14
|
+
|
|
15
|
+
<link href='/assets/css/ubuntu.css' rel='stylesheet' type='text/css'>
|
|
16
|
+
<link rel="stylesheet" type="text/css" href="/assets/css/main.css">
|
|
17
|
+
|
|
18
|
+
<script src="/assets/js/dropdown.js"></script>
|
|
19
|
+
|
|
20
|
+
{% if site.disqus_shortname %}
|
|
21
|
+
<script>
|
|
22
|
+
{{ site | disqus_config }}
|
|
23
|
+
</script>
|
|
24
|
+
{% endif %}
|
|
25
|
+
</head>
|
|
26
|
+
|
|
27
|
+
<body>
|
|
28
|
+
<nav class="navbar" role="navigation" aria-label="main navigation">
|
|
29
|
+
<div class="navbar-brand">
|
|
30
|
+
<a class="navbar-item" href="{{ site.url }}">{{ site.title }}</a>
|
|
31
|
+
|
|
32
|
+
<a role="button" class="navbar-burger" data-target="navMenu" aria-label="menu" aria-expanded="false">
|
|
33
|
+
<span aria-hidden="true"></span>
|
|
34
|
+
<span aria-hidden="true"></span>
|
|
35
|
+
<span aria-hidden="true"></span>
|
|
36
|
+
</a>
|
|
37
|
+
</div>
|
|
38
|
+
|
|
39
|
+
<div class="navbar-menu" id="navMenu">
|
|
40
|
+
<div class="navbar-start">
|
|
41
|
+
{{ site | navigation_list:page }}
|
|
42
|
+
</div>
|
|
43
|
+
|
|
44
|
+
<div class="navbar-end">
|
|
45
|
+
<div class="navbar-item">
|
|
46
|
+
<form class="field has-addons" action="https://google.com/search" method="get" role="search">
|
|
47
|
+
<div class="control">
|
|
48
|
+
<input type="text" class="input" name="q" placeholder="search item" value="">
|
|
49
|
+
<input type="hidden" name="q" value="site:{{ site.url | host_from_url }}" />
|
|
50
|
+
</div>
|
|
51
|
+
<div class="control">
|
|
52
|
+
<button type="submit" class="button">Search</button>
|
|
53
|
+
</div>
|
|
54
|
+
</form>
|
|
55
|
+
</div>
|
|
56
|
+
</div>
|
|
57
|
+
</div>
|
|
58
|
+
</nav>
|
|
59
|
+
|
|
60
|
+
<section class="section">
|
|
61
|
+
<div class="container">
|
|
62
|
+
<div class="columns">
|
|
63
|
+
<div class="column is-8">
|
|
64
|
+
<div class="content">
|
|
65
|
+
{{ content }}
|
|
66
|
+
</div>
|
|
67
|
+
</div>
|
|
68
|
+
<div id="sidebar" class="column is-4">
|
|
69
|
+
<div class="box content">
|
|
70
|
+
{% include sidebar.html %}
|
|
71
|
+
</div>
|
|
72
|
+
</div>
|
|
73
|
+
</div>
|
|
74
|
+
<div id="footer" class="has-text-right">
|
|
75
|
+
<small>
|
|
76
|
+
Powered by <a href="https://jekyll-octopod.github.io/">jekyll-octopod</a>
|
|
77
|
+
and <a href="http://jekyllrb.com/">Jekyll</a>.
|
|
78
|
+
</small>
|
|
79
|
+
</div>
|
|
80
|
+
</div>
|
|
81
|
+
</section>
|
|
82
|
+
</body>
|
|
83
|
+
</html>
|
data/_layouts/feed.xml
ADDED
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: null
|
|
3
|
+
---
|
|
4
|
+
<?xml version="1.0"
|
|
5
|
+
encoding="UTF-8"?>
|
|
6
|
+
<rss xmlns:atom="http://www.w3.org/2005/Atom"
|
|
7
|
+
xmlns:bitlove="http://bitlove.org"
|
|
8
|
+
xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
|
|
9
|
+
xmlns:content="http://purl.org/rss/1.0/modules/content/"
|
|
10
|
+
xmlns:psc="http://podlove.org/simple-chapters"
|
|
11
|
+
version="2.0">
|
|
12
|
+
|
|
13
|
+
<channel>
|
|
14
|
+
<title>{{ site.title }}</title>
|
|
15
|
+
<link>{{ site.url }}</link>
|
|
16
|
+
<atom:link href="{{ site.url }}/episodes.{{ page.format }}.rss{{page.myself}}" rel="self" type="application/rss+xml" title="{{ page.format }} Episode RSS-Feed"/>
|
|
17
|
+
<atom:link href="{{ site.url }}/episodes.{{ page.format }}.rss" rel="first" type="application/rss+xml" />
|
|
18
|
+
<atom:link href="{{ site.url }}/episodes{{page.last}}.{{ page.format }}.rss" rel="last" type="application/rss+xml" />
|
|
19
|
+
{% if page.next %}<atom:link href="{{ site.url }}/episodes{{page.next}}.{{ page.format }}.rss" rel="next" type="application/rss+xml" />{% endif %}
|
|
20
|
+
{% if page.prev %}<atom:link href="{{ site.url }}/episodes{{page.prev}}.{{ page.format }}.rss" rel="prev" type="application/rss+xml" />{% endif %}
|
|
21
|
+
|
|
22
|
+
{{ site | episode_feeds_rss:page.format }}
|
|
23
|
+
<description>{{ site.description | markdownify | strip_html }}</description>
|
|
24
|
+
<lastBuildDate>{{ site.time | time_to_rssschema }}</lastBuildDate>
|
|
25
|
+
<language>{{ site.language }}</language>
|
|
26
|
+
<generator>Jekyll-Octopod {{ site | version_string }}</generator>
|
|
27
|
+
|
|
28
|
+
<itunes:summary>{{ site.description | markdownify | strip_html }}</itunes:summary>
|
|
29
|
+
<itunes:author>{{ site.author }}</itunes:author>
|
|
30
|
+
<itunes:explicit>{{ site.explicit }}</itunes:explicit>
|
|
31
|
+
<itunes:image href="{{ site.url }}/assets/img/logo-itunes.jpg" />
|
|
32
|
+
<itunes:owner>
|
|
33
|
+
<itunes:name>{{ site.author }}</itunes:name>
|
|
34
|
+
<itunes:email>{{ site.email }}</itunes:email>
|
|
35
|
+
</itunes:owner>
|
|
36
|
+
<managingEditor>{{site.email}} ({{site.author}})</managingEditor>
|
|
37
|
+
<copyright>{{ site.license }}</copyright>
|
|
38
|
+
<itunes:subtitle>{{ site.subtitle }}</itunes:subtitle>
|
|
39
|
+
<itunes:keywords>{{ site.keywords | join:', ' }}</itunes:keywords>
|
|
40
|
+
<image>
|
|
41
|
+
<title>{{ site.title }}</title>
|
|
42
|
+
<url>{{ site.url }}/assets/img/logo-itunes.jpg</url>
|
|
43
|
+
<link>{{ site.url }}</link>
|
|
44
|
+
</image>
|
|
45
|
+
{% for category in site.itunes_categories %}
|
|
46
|
+
<itunes:category text="{{ category | xml_escape }}" />
|
|
47
|
+
{% endfor %}
|
|
48
|
+
{%- if site.download_url == "" or site.download_url == nil -%}
|
|
49
|
+
{% assign download_url = site.url | append: '/episodes' %}
|
|
50
|
+
{%- else -%}
|
|
51
|
+
{% assign download_url = site.download_url %}
|
|
52
|
+
{% endif %}
|
|
53
|
+
{%- for post in site.posts -%}
|
|
54
|
+
{%- if post.audio[page.format] -%}
|
|
55
|
+
{%- assign check = forloop.index0 | divided_by:site.episodes_per_feed_page | plus: 1 -%}
|
|
56
|
+
{%- if check == page.page_number -%}
|
|
57
|
+
<item>
|
|
58
|
+
<title>{{ post.title }} - {{ post.subtitle }}</title>
|
|
59
|
+
<link>{{ site.url }}{{ post.url }}</link>
|
|
60
|
+
<atom:link rel="http://podlove.org/deep-link" href="{{ site.url }}/players/{{ post.slug }}"/>
|
|
61
|
+
<comments>{{ site.url }}{{ post.url }}#disqus_thread</comments>
|
|
62
|
+
<pubDate>{{ post.date | time_to_rssschema }}</pubDate>
|
|
63
|
+
{% for category in post.categories %}
|
|
64
|
+
<category><![CDATA[{{ category }}]]></category>
|
|
65
|
+
{% endfor %}
|
|
66
|
+
<guid isPermaLink="false">{{ site.url }}{{ post.url }}</guid>
|
|
67
|
+
<description><![CDATA[{{ post.content | expand_urls: site.url | cdata_escape | remove_script_and_audio }}]]></description>
|
|
68
|
+
<content:encoded><![CDATA[{{ post.content | expand_urls: site.url | cdata_escape | remove_script_and_audio }}]]></content:encoded>
|
|
69
|
+
{% assign url = download_url | append: '/' | append: post.audio[page.format] %}
|
|
70
|
+
{%- if post.filesize -%}
|
|
71
|
+
<enclosure url="{{ url }}"
|
|
72
|
+
length="{{ post | size_by_format: page.format }}"
|
|
73
|
+
type="{{ page.format | mime_type }}" />
|
|
74
|
+
{%- else -%}
|
|
75
|
+
<enclosure url="{{ url }}"
|
|
76
|
+
length="{{ post.audio | audio:page.format | file_size }}"
|
|
77
|
+
type="{{ page.format | mime_type }}" />
|
|
78
|
+
{% endif %}
|
|
79
|
+
<itunes:keywords>{{ post.tags }}</itunes:keywords>
|
|
80
|
+
<itunes:subtitle>{{ post.subtitle }}</itunes:subtitle>
|
|
81
|
+
<itunes:summary>{{ post.summary }}</itunes:summary>
|
|
82
|
+
<itunes:author>{{ post.author | otherwise:site.author }}</itunes:author>
|
|
83
|
+
<itunes:explicit>{{ post.explicit | otherwise:site.explicit }}</itunes:explicit>
|
|
84
|
+
<itunes:duration>{{ post.duration }}</itunes:duration>
|
|
85
|
+
{%- if post.chapters -%}
|
|
86
|
+
<psc:chapters version="1.1" xmlns:psc="http://podlove.org/simple-chapters">
|
|
87
|
+
{%- for chapter in post.chapters -%}
|
|
88
|
+
<psc:chapter start="{{ chapter | split_chapter:'start' }}" title="{{ chapter | split_chapter:'title' }}" />
|
|
89
|
+
{% endfor %}
|
|
90
|
+
</psc:chapters>
|
|
91
|
+
{%- endif -%}
|
|
92
|
+
{%- if post.contributors -%}
|
|
93
|
+
{%- for contributor in post.contributors -%}
|
|
94
|
+
<atom:contributor>
|
|
95
|
+
<atom:name>{{ contributor.name}}</atom:name>
|
|
96
|
+
<atom:uri>{{ contributor.uri}}</atom:uri>
|
|
97
|
+
<atom:email>{{ contributor.email}}</atom:email>
|
|
98
|
+
</atom:contributor>
|
|
99
|
+
{%- endfor -%}
|
|
100
|
+
{%- endif -%}
|
|
101
|
+
{%- if post.image -%}
|
|
102
|
+
<itunes:image href="{{ site.url }}/assets/img/{{post.image}}" />
|
|
103
|
+
<image>
|
|
104
|
+
<title>{{ post.image_title }}</title>
|
|
105
|
+
<url>{{ site.url }}/assets/img/{{post.image}}</url>
|
|
106
|
+
<link>{{ site.url }}</link>
|
|
107
|
+
</image>
|
|
108
|
+
{%- endif -%}
|
|
109
|
+
</item>
|
|
110
|
+
{%- endif -%}
|
|
111
|
+
{%- endif -%}
|
|
112
|
+
{%- endfor -%}
|
|
113
|
+
</channel>
|
|
114
|
+
</rss>
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: null
|
|
3
|
+
---
|
|
4
|
+
{%- if site.download_url == "" or site.download_url == nil -%}
|
|
5
|
+
{%- assign download_url = site.url | append: '/episodes' -%}
|
|
6
|
+
{%- else -%}
|
|
7
|
+
{%- assign download_url = site.download_url -%}
|
|
8
|
+
{%- endif -%}
|
|
9
|
+
|
|
10
|
+
{"version": "https://jsonfeed.org/version/1",
|
|
11
|
+
"title": "{{ site.title | xml_escape }}",
|
|
12
|
+
"home_page_url": "{{ "/" | absolute_url }}",
|
|
13
|
+
"feed_url": "{{ "/feed.json" | absolute_url }}",
|
|
14
|
+
"description": {{ site.description | jsonify }},
|
|
15
|
+
"user_comment": {{ site.description | jsonify }},
|
|
16
|
+
"icon": "{{ "/assets/apple-touch-icon-precomposed.png" | absolute_url }}",
|
|
17
|
+
"favicon": "{{ "/assets/favicon.ico" | absolute_url }}",
|
|
18
|
+
"expired": false,
|
|
19
|
+
"author": {
|
|
20
|
+
"name": {{ site.author | jsonify }},
|
|
21
|
+
"url": {{ site.author_url | jsonify }}
|
|
22
|
+
},
|
|
23
|
+
"items": [
|
|
24
|
+
{%- for post in site.posts limit:36 -%}
|
|
25
|
+
{% assign url = download_url | append: '/' | append: post.audio[page.format] %}
|
|
26
|
+
{"id": "{{ post.url | absolute_url | sha1 }}",
|
|
27
|
+
"title": {{ post.title | jsonify }},
|
|
28
|
+
"summary": "",
|
|
29
|
+
"content_text": {{ post.content | strip_html | strip_newlines | jsonify }},
|
|
30
|
+
"content_html": {{ post.content | strip_newlines | jsonify }},
|
|
31
|
+
"url": "{{ post.url | absolute_url }}",
|
|
32
|
+
{%- if post.tags.size > 0 -%}"tags": {{ post.tags | jsonify }}, {%- endif -%}
|
|
33
|
+
{% if post.audio.size > 1 %}
|
|
34
|
+
"attachments": [
|
|
35
|
+
{"url": "{{ url }}",
|
|
36
|
+
"mime_type": "audio/mpeg",
|
|
37
|
+
{%- if post.filesize -%}
|
|
38
|
+
"size_in_bytes": "{{ post | size_by_format: page.format }}"
|
|
39
|
+
{%- else -%}
|
|
40
|
+
"size_in_bytes": "{{ post.audio | audio:mp3 | file_size }}"
|
|
41
|
+
{%- endif -%}
|
|
42
|
+
}
|
|
43
|
+
],{% endif %}
|
|
44
|
+
"date_published": "{{ post.date | date_to_xmlschema }}",
|
|
45
|
+
"date_modified": "{{ post.date | date_to_xmlschema }}",
|
|
46
|
+
"author": {
|
|
47
|
+
"name": "{{ post.author }}"
|
|
48
|
+
}
|
|
49
|
+
}{% if forloop.last == false %},{% endif %}
|
|
50
|
+
{%- endfor -%}
|
|
51
|
+
]
|
|
52
|
+
}
|
data/_layouts/page.html
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
---
|
|
4
|
+
<section>
|
|
5
|
+
{% if page.title %}
|
|
6
|
+
<div class="block">
|
|
7
|
+
<h1 class="title">
|
|
8
|
+
{{ page.title }}
|
|
9
|
+
</h1>
|
|
10
|
+
{% if page.subtitle %}<h2 class="subtitle">{{ page.subtitle }}</h2>{% endif %}
|
|
11
|
+
</div>
|
|
12
|
+
{% endif %}
|
|
13
|
+
|
|
14
|
+
{{ content }}
|
|
15
|
+
</section>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: null
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
<!DOCTYPE html>
|
|
6
|
+
<html lang="{{ site.language }}" prefix="og: http://ogp.me/ns#">
|
|
7
|
+
|
|
8
|
+
<head>
|
|
9
|
+
<meta charset="utf-8">
|
|
10
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
11
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
12
|
+
<title>{{ site.title }} - {{ page.title }}</title>
|
|
13
|
+
|
|
14
|
+
<meta property="og:type" content="website"/>
|
|
15
|
+
<meta property="og:site_name" content="{{ site.title }}"/>
|
|
16
|
+
<meta property="og:title" content="{{ page.title }} - {{ page.subtitle }}"/>
|
|
17
|
+
<meta property="og:url" content="{{ site.url }}{{ page.url }}"/>
|
|
18
|
+
<meta property="og:description" content="{{ site.description }}"/>
|
|
19
|
+
<meta property="og:image" content="{{ site.url }}/assets/img/logo-360x360.png"/>
|
|
20
|
+
|
|
21
|
+
{% if site.download_url == "" or site.download_url == nil %}
|
|
22
|
+
{% assign download_url = site.url | append: '/episodes' %}
|
|
23
|
+
{% else %}
|
|
24
|
+
{% assign download_url = site.download_url %}
|
|
25
|
+
{% endif %}
|
|
26
|
+
{% for feed in site['episode_feed_formats'] %}
|
|
27
|
+
<meta property="og:audio" content="{{ download_url }}/{{ page['audio'][feed] }}"/>
|
|
28
|
+
<meta property="og:audio:type" content="audio/{{ feed }}"/>
|
|
29
|
+
{% endfor %}
|
|
30
|
+
</head>
|
|
31
|
+
|
|
32
|
+
<body>
|
|
33
|
+
{% podlove_player %}
|
|
34
|
+
</body>
|
|
35
|
+
|
|
36
|
+
</html>
|
data/_layouts/post.html
ADDED
data/_sass/_presets.scss
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// No presets so far
|