Skip to content
This repository has been archived by the owner on Sep 3, 2019. It is now read-only.

Commit

Permalink
Fixed up some issues with the HTML.
Browse files Browse the repository at this point in the history
  • Loading branch information
myles committed Jan 21, 2010
1 parent 500d92b commit 58dffc9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion blog/templates/blog/_post.html
Expand Up @@ -5,7 +5,7 @@
<div id="blog_post_{{ post.id }}">
<h3><a href="{{ post.get_absolute_url }}">{{ post.title }}</a></h3>
<div class="meta">
<p class="alt published">
<p class="alt">
Published by <span class="vcard"><span class="fn">{{ post.author.get_full_name }}</span></span>
<span class="published" title="{{ post.published }}">{{ post.published|timesince }}</span> ago{% if post.categories.all %} in <span class="categories">{% for category in post.categories.all %}<a href="{{ category.get_absolute_url }}">{{ category }}</a>{% if not forloop.last %}, {% endif %}{% ifequal forloop.revcounter0 1 %} and {% endifequal %}{% endfor %}</span>{% endif %}.
<span class="comment_count"><a href="{{ post.get_absolute_url }}#comments">{{ comment_count }} Comment{{ comment_count|pluralize }}</a></span>
Expand Down
2 changes: 1 addition & 1 deletion blog/templates/blog/detail.html
Expand Up @@ -8,7 +8,7 @@

<h2><a href="{{ post.get_absolute_url }}">{{ post.title }}</a></h2>
<div class="meta">
<p class="alt published">
<p class="alt">
Published by <span class="vcard"><span class="fn">{{ post.author.get_full_name }}</span></span>
<span class="published" title="{{ post.published }}">{{ post.published|timesince }}</span> ago{% if post.categories.all %} in <span class="categories">{% for category in post.categories.all %}<a href="{{ category.get_absolute_url }}">{{ category }}</a>{% if not forloop.last %}, {% endif %}{% ifequal forloop.revcounter0 1 %} and {% endifequal %}{% endfor %}</span>{% endif %}.
<span class="comment_count"><a href="{{ post.get_absolute_url }}#comments">{{ comment_count }} Comment{{ comment_count|pluralize }}</a></span>
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Expand Up @@ -52,7 +52,7 @@ def fullsplit(path, result=None):
setup(
name = 'asgard-blog',
version = blog.__version__,
url = 'http://asgardproject.org/blog/',
url = 'http://asgardproject.org/apps/blog.html',

author = 'Myles Braithwaite',
author_email = 'me@mylesbraithwaite.com',
Expand All @@ -66,7 +66,9 @@ def fullsplit(path, result=None):
data_files = data_files,
zip_safe = False,

install_requires = [],
install_requires = [
'distribute',
],

classifiers = [
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit 58dffc9

Please sign in to comment.