Merge branch 'dev' into 'master'
Merge branch dev into master via CloudCannon See merge request sakrecoer/mother-web!5
This commit is contained in:
commit
cffb05208b
1
Gemfile
1
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"
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -38,7 +38,6 @@ social:
|
|||
plugins:
|
||||
- jekyll-sitemap
|
||||
- jekyll-seo-tag
|
||||
- jekyll-feed
|
||||
- jekyll-paginate-v2
|
||||
|
||||
### Plugin settings:
|
||||
|
|
64
rss.xml
Normal file
64
rss.xml
Normal file
|
@ -0,0 +1,64 @@
|
|||
---
|
||||
title : The Sakrecoer RSS Feed
|
||||
layout: null
|
||||
---
|
||||
|
||||
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
|
||||
|
||||
<channel>
|
||||
|
||||
<title>{{ site.title }}</title>
|
||||
<description>{{ site.description }}</description>
|
||||
<link>{{ site.url }}</link>
|
||||
<language>en-us</language>
|
||||
<copyright>Creative Commons CC-BY-SA</copyright>
|
||||
<lastBuildDate>{{ site.time | date_to_xmlschema }}</lastBuildDate>
|
||||
<pubDate>{{ site.time | date_to_xmlschema }}</pubDate>
|
||||
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
|
||||
<webMaster>{{ site.author.email }}</webMaster>
|
||||
|
||||
<itunes:author>{{ site.author.name }}</itunes:author>
|
||||
<itunes:subtitle>{{ site.description | xml_escape }}</itunes:subtitle>
|
||||
<itunes:summary>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. </itunes:summary>
|
||||
|
||||
<itunes:owner>
|
||||
<itunes:name>{{ site.author.name }}</itunes:name>
|
||||
<itunes:email>{{ site.author.email }}</itunes:email>
|
||||
</itunes:owner>
|
||||
|
||||
<itunes:explicit>No</itunes:explicit>
|
||||
|
||||
<itunes:image href="{{ site.url }}{{ site.logo }}"/>
|
||||
|
||||
<itunes:category text="Music">
|
||||
<itunes:category text="Podcasting"/>
|
||||
</itunes:category>
|
||||
|
||||
{% for post in site.tracks %}
|
||||
|
||||
<item>
|
||||
<title>{{ post.title }}</title>
|
||||
<link>{{ site.url }}{{ post.url }}?ref=rss</link>
|
||||
<guid>{{ post.uid }}</guid>
|
||||
<description> <img src="{{ post.image }}" /> {{ post.content | xml_escape }}</description>
|
||||
<enclosure url="{{ post.mp3 }}?ref=rss" type="audio/mpeg"/>
|
||||
<category>Podcasts</category>
|
||||
<pubDate>{{ post.date | date_to_xmlschema }}</pubDate>
|
||||
|
||||
<itunes:author>Sakrecoer</itunes:author>
|
||||
|
||||
<itunes:explicit>No</itunes:explicit>
|
||||
<itunes:subtitle>{{ post.content | xml_escape }}</itunes:subtitle>
|
||||
<itunes:summary>{{ post.content | xml_escape }}</itunes:summary>
|
||||
<itunes:keywords>{{ post.tag | xml_escape }}</itunes:keywords>
|
||||
<itunes:image href="{{ post.image }}"/>
|
||||
|
||||
</item>
|
||||
|
||||
{% endfor %}
|
||||
|
||||
</channel>
|
||||
|
||||
</rss>
|
Loading…
Reference in a new issue