Skip to content

Commit

Permalink
criando feeds separados para o braziljs
Browse files Browse the repository at this point in the history
  • Loading branch information
Joselito Júnior committed Jan 1, 2015
1 parent 4cfdaab commit d05f85b
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 1 deletion.
48 changes: 48 additions & 0 deletions feed-braziljs.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
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>CodeTalks</title>
<language>pt-br</language>
<link>{{ site.url }}</link>
<copyright>&#x2117; &amp; &#xA9; 2014 Daniel Castro &amp; Joselito Junior</copyright>
<itunes:subtitle>Frontend, frontin, backend, humor, google e muito código.</itunes:subtitle>
<itunes:author>Daniel Castro &amp; Joselito Júnior</itunes:author>
<itunes:summary>
O CodeTalks é um podcast mensal que traz entrevistas sobre os mais diversos temas no mundo da tecnologia, divulgação de eventos, reviews e tudo sobre o Google no último mês, tudo com muito bom humor.
</itunes:summary>
<itunes:explicit>no</itunes:explicit>
<description>
O CodeTalks é um podcast mensal que traz entrevistas sobre os mais diversos temas no mundo da tecnologia, divulgação de eventos, reviews e tudo sobre o Google no último mês, tudo com muito bom humor.
</description>
<itunes:owner>
<itunes:name>Joselito Júnior</itunes:name>
<itunes:email>[email protected]</itunes:email>
</itunes:owner>
<itunes:image href="http://codetalks.net/images/logo-square.png"/>
<itunes:category text="Technology">
<itunes:category text="Tech News"/>
</itunes:category>

{% for post in site.posts limit:10 %}
<item>
<title>CodeTalks #{{ post.episode | xml_escape }} - {{ post.title | xml_escape }}</title>
<description>{{ post.content | xml_escape }}</description>
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
<link>{{ site.url }}{{ post.url }}</link>
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>

<itunes:author>CodeTalks</itunes:author>
<itunes:subtitle>{{ post.convidado }}</itunes:subtitle>
<itunes:summary></itunes:summary>
<itunes:image href="http://codetalks.net/images/{{post.episode}}.png" />
<enclosure url="{{ post.m4aurl }}" length="{{ post.fulltime }}" type="audio/x-m4a" />
<guid>{{ post.m4aurl }}</guid>
<itunes:duration>{{ post.fulltime }}</itunes:duration>
<itunes:keywords>{{ post.tags }}</itunes:keywords>
</item>
{% endfor %}
</channel>
</rss>
2 changes: 1 addition & 1 deletion feed.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ layout: null

{% for post in site.posts limit:10 %}
<item>
<title>CodeTalks #{{ post.episode | xml_escape }} - {{ post.title | xml_escape }}</title>
<title>{{ post.title | xml_escape }}</title>
<description>{{ post.content | xml_escape }}</description>
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
<link>{{ site.url }}{{ post.url }}</link>
Expand Down

0 comments on commit d05f85b

Please sign in to comment.