Created
July 12, 2012 20:18
-
-
Save jdsimcoe/3100675 to your computer and use it in GitHub Desktop.
iTunes Podcast
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:stylesheet version="1.0" | |
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:output method="xml" | |
doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" | |
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" | |
omit-xml-declaration="yes" | |
encoding="UTF-8" | |
indent="yes" /> | |
<xsl:include href="../utilities/date-time-advanced.xsl"/> | |
<xsl:template match="/"> | |
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"> | |
<channel> | |
<title>Athey Creek | Audio Podcast</title> | |
<description>To put it simply, we are a fellowship of believers that strive to worship God, follow Jesus, study the Bible, and serve one another. We believe church is supposed to be like a hospital, a place of healing and refreshment.</description> | |
<link><xsl:value-of select="$root" /></link> | |
<itunes:subtitle>Teachings from God's inspired word.</itunes:subtitle> | |
<itunes:author><xsl:value-of select="$website-name" /></itunes:author> | |
<itunes:summary>Weekly teachings from <xsl:value-of select="$website-name" /></itunes:summary> | |
<language>en-us</language> | |
<copyright>© 1996-<xsl:value-of select="$this-year"/>. <xsl:value-of select="$website-name" />. All rights reserved.</copyright> | |
<itunes:owner> | |
<itunes:name><xsl:value-of select="$website-name" /></itunes:name> | |
<itunes:email>[email protected]</itunes:email> | |
</itunes:owner> | |
<image> | |
<url>http://ajesuschurch.org/images/itunes-podcast.jpg</url> | |
<title><xsl:value-of select="$website-name" /></title> | |
<link><xsl:value-of select="$root" /></link> | |
</image> | |
<!-- iTunes Browse Podcasts Category --> | |
<itunes:category text="Religion & Spirituality"> | |
<!-- iTunes Browse Podcasts Subcategory --> | |
<itunes:category text="Christianity"></itunes:category> | |
</itunes:category> | |
<!-- Start Sermon Information --> | |
<item> | |
<title>Philippians: a colony of heaven / Fear and trembling</title> | |
<author>John Mark Comer</author> | |
<itunes:subtitle>Philippians 2v12-13</itunes:subtitle> | |
<itunes:summary>Philippians 2v12-13</itunes:summary> | |
<enclosure url="http://ajesuschurch.org/teachings/all-teachings/07-08-2012.mp3" length="38298358" type="audio/mpeg"></enclosure> | |
<guid>http://ajesuschurch.org/teachings/all-teachings/07-08-2012.mp3</guid> | |
<pubDate>Sun, 08 Jul 2012 20:00:28 -0700</pubDate> | |
<itunes:duration>00:53:03</itunes:duration> | |
<itunes:explicit>no</itunes:explicit> | |
<description>Philippians 2v12-13</description> | |
</item> | |
</channel> | |
</rss> | |
</xsl:template> | |
</xsl:stylesheet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment