Skip to content

Commit

Permalink
Structure update
Browse files Browse the repository at this point in the history
- turned lsi back on, since it doesn't freak the fuck out anymore
- Updated web-errors feed to go off of the category instead of a hack
- Update web-error generation script
  • Loading branch information
catsby committed Aug 16, 2011
1 parent dd20f72 commit b7e3f9e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion _config.yml
Expand Up @@ -2,4 +2,4 @@ auto: false
pygments: true
markdown: kramdown
exclude: ['swag', 'd.diff', 'Capfile', 'config', 'public']
#lsi: true
lsi: true
6 changes: 3 additions & 3 deletions atom_web_errors.xml
Expand Up @@ -8,15 +8,15 @@ layout: nil
{% endcomment %}
<title>@ctshryock: Web Errors</title>
<link href="http://ctshryock.com/atom_web_errors.xml" rel="self"/>
<link href="http://ctshryock.com/web-errors/index.html"/>
<link href="http://ctshryock.com/web-errors.html"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>http://ctshryock.com/web-errors</id>
<author>
<name>Clint Shryock (@ctshryock)</name>
<email>info@ctshryock.com</email>
<email>web-errors@ctshryock.com</email>
</author>

{% for error in site.posts %}
{% for error in site.categories.web-errors %}
{% if error.category == 'web-errors' %}
<entry>
<title>{{ error.title }}</title>
Expand Down
2 changes: 1 addition & 1 deletion config/deploy.rb
Expand Up @@ -62,7 +62,7 @@ def post_date

def post_layout
if category =~ /web-error/
'web-errors'
'web-error'
else
'post'
end
Expand Down

0 comments on commit b7e3f9e

Please sign in to comment.