Skip to content

Commit 7fc0ca5

Browse files
committedMar 30, 2014
tweak jekyll build
1 parent 02ec036 commit 7fc0ca5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎_config.yml

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ exclude: [".rvmrc", ".rbenv-version", "README.md", "less",
88
"node_modules", "Gruntfile.js", "bootstrap", "_site_git",
99
"assets/themes/twitter/less"
1010
]
11-
auto: false
1211
pygments: auto
1312

1413
# Themes are encouraged to use these universal variables

‎atom.xml

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ title : Atom Feed
66
<feed xmlns="http://www.w3.org/2005/Atom">
77

88
<title>{{ site.title }}</title>
9-
<link href="{{ site.production_url }}/atom.xml" rel="self"/>
9+
<link href="{{ site.production_url }}/{{ site.atom_path }}" rel="self"/>
1010
<link href="{{ site.production_url }}"/>
1111
<updated>{{ site.time | date_to_xmlschema }}</updated>
12-
<id>{{ site.production_url }}/</id>
12+
<id>{{ site.production_url }}</id>
1313
<author>
1414
<name>{{ site.author.name }}</name>
1515
<email>{{ site.author.email }}</email>
@@ -21,7 +21,8 @@ title : Atom Feed
2121
<link href="{{ site.production_url }}{{ post.url }}"/>
2222
<updated>{{ post.date | date_to_xmlschema }}</updated>
2323
<id>{{ site.production_url }}{{ post.id }}</id>
24-
<content type="html">{{ post.description | xml_escape }}</content>
24+
<content type="html">{{ post.content | xml_escape }}</content>
2525
</entry>
2626
{% endfor %}
27+
2728
</feed>

0 commit comments

Comments
 (0)
Please sign in to comment.