From f3d712b8a18a9014dde6eb8e98b5aaa5f41857d5 Mon Sep 17 00:00:00 2001 From: Set Sakrecoer Date: Tue, 27 Aug 2019 17:40:51 +0200 Subject: [PATCH 1/2] removing automagic feed plugin --- Gemfile | 1 - Gemfile.lock | 3 --- 2 files changed, 4 deletions(-) diff --git a/Gemfile b/Gemfile index fae964c..107da04 100644 --- a/Gemfile +++ b/Gemfile @@ -12,7 +12,6 @@ gem "jekyll", "~> 3.8.5" # If you have any plugins, put them here! group :jekyll_plugins do - gem "jekyll-feed", "0.11.0" gem "jekyll-paginate-v2", "~>1.7" gem "jekyll-sitemap", "1.2.0" gem "jekyll-seo-tag", "2.6.0" diff --git a/Gemfile.lock b/Gemfile.lock index 41dabbe..e318bf1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -27,8 +27,6 @@ GEM pathutil (~> 0.9) rouge (>= 1.7, < 4) safe_yaml (~> 1.0) - jekyll-feed (0.11.0) - jekyll (~> 3.3) jekyll-paginate-v2 (1.9.4) jekyll (~> 3.0) jekyll-sass-converter (1.5.2) @@ -66,7 +64,6 @@ PLATFORMS DEPENDENCIES jekyll (~> 3.8.5) - jekyll-feed (= 0.11.0) jekyll-paginate-v2 (~> 1.7) jekyll-seo-tag (= 2.6.0) jekyll-sitemap (= 1.2.0) -- 2.39.5 From f42d6f40d8fb3724ba67d5cbbe7ab3dae8019e66 Mon Sep 17 00:00:00 2001 From: Set Sakrecoer Date: Tue, 27 Aug 2019 17:41:01 +0200 Subject: [PATCH 2/2] adding my own feed magic --- _config.yml | 1 - rss.xml | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+), 1 deletion(-) create mode 100644 rss.xml diff --git a/_config.yml b/_config.yml index 131af5b..dc54a6f 100644 --- a/_config.yml +++ b/_config.yml @@ -38,7 +38,6 @@ social: plugins: - jekyll-sitemap - jekyll-seo-tag - - jekyll-feed - jekyll-paginate-v2 ### Plugin settings: diff --git a/rss.xml b/rss.xml new file mode 100644 index 0000000..894a688 --- /dev/null +++ b/rss.xml @@ -0,0 +1,64 @@ +--- +title : The Sakrecoer RSS Feed +layout: null +--- + + + + + + + + {{ site.title }} + {{ site.description }} + {{ site.url }} + en-us + Creative Commons CC-BY-SA + {{ site.time | date_to_xmlschema }} + {{ site.time | date_to_xmlschema }} + http://blogs.law.harvard.edu/tech/rss + {{ site.author.email }} + + {{ site.author.name }} + {{ site.description | xml_escape }} + This podcast is the a conveniant way to recieve the latest Sakrecoer Hit. There is mostely tunes and tracks, but might eventualy contain other types of audio data. + + + {{ site.author.name }} + {{ site.author.email }} + + +No + + + + + + + +{% for post in site.tracks %} + + +{{ post.title }} +{{ site.url }}{{ post.url }}?ref=rss +{{ post.uid }} + <img src="{{ post.image }}" /> {{ post.content | xml_escape }} + +Podcasts +{{ post.date | date_to_xmlschema }} + +Sakrecoer + +No +{{ post.content | xml_escape }} +{{ post.content | xml_escape }} +{{ post.tag | xml_escape }} + + + + +{% endfor %} + + + + -- 2.39.5