# HG changeset patch # User Steve Losh # Date 1263030070 18000 # Node ID d32b37e73149b2eed76b7a56b55d835adccb91e1 # Parent 29514bb12ef0602a7ca791a3a864b4c78a034a9e Exclude .htaccess from the feed. diff -r 29514bb12ef0 -r d32b37e73149 layout/skeleton/_atom.xml --- a/layout/skeleton/_atom.xml Sat Jan 09 04:36:49 2010 -0500 +++ b/layout/skeleton/_atom.xml Sat Jan 09 04:41:10 2010 -0500 @@ -22,20 +22,22 @@ {% for node_page in page.node.walk_pages %} {% ifnotequal node_page page %} {% if not node_page.listing and not node_page.exclude %} - - {{ node_page.title }} - {{ site.author }} - - {{ node_page.created|xmldatetime }} - {{ node_page.created|xmldatetime }} - {{ node_page.full_url }} - {% block entry_extra %}{% endblock %} - - {% filter force_escape %} - {% render_article node_page %} - {% endfilter %} - - + {% ifnotequal node_page.name ".htaccess" %} + + {{ node_page.title }} + {{ site.author }} + + {{ node_page.created|xmldatetime }} + {{ node_page.created|xmldatetime }} + {{ node_page.full_url }} + {% block entry_extra %}{% endblock %} + + {% filter force_escape %} + {% render_article node_page %} + {% endfilter %} + + + {% endifnotequal %} {%endif%} {%endifnotequal%} {% endfor %}