forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
criando feeds separados para o braziljs
- Loading branch information
Joselito Júnior
committed
Jan 1, 2015
1 parent
4cfdaab
commit d05f85b
Showing
2 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
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
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>℗ & © 2014 Daniel Castro & Joselito Junior</copyright> | ||
<itunes:subtitle>Frontend, frontin, backend, humor, google e muito código.</itunes:subtitle> | ||
<itunes:author>Daniel Castro & 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> |
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