jekyll-octopod 0.8.8 → 0.8.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/assets/_config.yml +47 -0
- data/assets/_layouts/feed.xml +1 -1
- data/lib/octopod/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: de0117dd4123fa3c95600e4a602dc99400e98b33
|
4
|
+
data.tar.gz: 9b4b5bd620df8cd97d2cf5a031fbe17d1d7e2064
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5199e2d8eddced96337ef37b0540564a3a4fffac1995b299584775f380664bc8734e2fe43392e6944533936f79b02eb94f1a256bc911da3cdf7119ffbca1120a
|
7
|
+
data.tar.gz: 723366ab0a56479f6520ec1f361e25530c23b98d1cef338f56c338e6fb528bf464b8d06088ad47ad7a22e900bc9881769ab73bccc95376be8dc16c4f2685318f
|
data/assets/_config.yml
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
# You have to configure this ###################################################
|
2
|
+
title: Octopod
|
3
|
+
# You should configure this ####################################################
|
4
|
+
url: http://localhost:4000
|
5
|
+
subtitle: Static Site Podcast Publishing for Geeks
|
6
|
+
description: My super duper cool podcast.
|
7
|
+
author: Uncle Octopod
|
8
|
+
email: octopod@example.com
|
9
|
+
keywords: [octopod, podcast, magic]
|
10
|
+
itunes_categories: [Technology]
|
11
|
+
# additional_feeds:
|
12
|
+
# itunes: http://itunes.apple.com/de/podcast/podcast_name/id42424242
|
13
|
+
# torrent_m4a: http://bitlove.org/example_user/example_podcast_m4a/feed
|
14
|
+
# torrent_mp3: http://bitlove.org/example_user/example_podcast_mp3/feed
|
15
|
+
episodes_per_feed_page: 100
|
16
|
+
## Rsync Deploy config #########################################################
|
17
|
+
### Be sure your public key is listed in your server's ~/.ssh/authorized_keys
|
18
|
+
### file.
|
19
|
+
ssh_host: user@host.org
|
20
|
+
ssh_port: 22
|
21
|
+
document_root: /path/to/your/htdocs/
|
22
|
+
rsync_delete: true
|
23
|
+
# You can configure this #######################################################
|
24
|
+
twitter_nick: my_twitter_handle
|
25
|
+
language: en
|
26
|
+
explicit: 'no' # 'yes'/'no'/clean
|
27
|
+
license: CC BY 4.0
|
28
|
+
license_url: https://creativecommons.org/licenses/by/4.0/
|
29
|
+
license_image_url: https://i.creativecommons.org/l/by/4.0/88x31.png
|
30
|
+
## Flattr ######################################################################
|
31
|
+
flattr_uid: # Flattr will not be used unless this is set
|
32
|
+
flattr_button: compact # compact | default
|
33
|
+
flattr_mode: auto # auto | manual(default)
|
34
|
+
flattr_popout: 1 # 1 | 0 (show popout when hovering mouse over button)
|
35
|
+
flattr_language: en_GB # available languages - https://api.flattr.com/rest/v2/languages.txt
|
36
|
+
flattr_category: audio # available categories - https://api.flattr.com/rest/v2/categories.txt
|
37
|
+
## Disqus comments #############################################################
|
38
|
+
disqus_shortname: # Disqus will not be used unless this is set
|
39
|
+
disqus_developer: 0 # 1 / 0
|
40
|
+
## Feed links ###########################################################
|
41
|
+
itunes_url: https://itunes.apple.com/at/podcast/myname/id#myid#
|
42
|
+
bitlove_url: https://bitlove.org/myaccount
|
43
|
+
fyyd_url: https://fyyd.de/podcast/myaccount/myid
|
44
|
+
gpodder_url: https://gpodder.net/podcast/mypodcast
|
45
|
+
|
46
|
+
gems: [jekyll-octopod]
|
47
|
+
theme: jekyll-bootflat
|
data/assets/_layouts/feed.xml
CHANGED
@@ -64,7 +64,7 @@ layout: null
|
|
64
64
|
{% for category in post.categories %}
|
65
65
|
<category><![CDATA[{{ category }}]]></category>
|
66
66
|
{% endfor %}
|
67
|
-
<guid isPermaLink="false">{{ site.url }}{{ post }}</guid>
|
67
|
+
<guid isPermaLink="false">{{ site.url }}{{ post.url }}</guid>
|
68
68
|
<description><![CDATA[{{ post.content | expand_urls: site.url | cdata_escape | remove_script_and_audio }}]]></description>
|
69
69
|
<content:encoded><![CDATA[{{ post.content | expand_urls: site.url | cdata_escape | remove_script_and_audio }}]]></content:encoded>
|
70
70
|
{% assign url = download_url | append: '/' | append: post.audio[page.format] %}
|
data/lib/octopod/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-octopod
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Arne Eilermann
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-
|
12
|
+
date: 2017-04-07 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: facets
|
@@ -98,6 +98,7 @@ extra_rdoc_files: []
|
|
98
98
|
files:
|
99
99
|
- README.md
|
100
100
|
- Rakefile
|
101
|
+
- assets/_config.yml
|
101
102
|
- assets/_config.yml.sample
|
102
103
|
- assets/_includes/disqus_count.html
|
103
104
|
- assets/_includes/disqus_thread.html
|