Skip to content

Commit

Permalink
Fixed a few typoes in the templates
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/brian/Backups/S3/backups/Wednesday/brian/svn/djog/trunk@45 95ab7de8-677b-4562-a266-b8acc9dd993c
  • Loading branch information
alex committed Oct 23, 2007
1 parent 88fa728 commit 1d4cbb7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion djog/templates/base.html
Expand Up @@ -12,7 +12,7 @@
<div id="header">
<div class="blog_title_wrap">
<div class="blog_title">
<h1><a href="{% url djog_index %}">{{ blog. title }}</a></h1>
<h1><a href="{% url djog_index %}">{{ blog.title }}</a></h1>
</div>
</div>
<div class="clear"></div>
Expand Down
2 changes: 1 addition & 1 deletion djog/templates/djog/entry_archive.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}

{% block title %}Latest Entries{% endblock %}
{% block head_extra %}<link href="{% url djog_feed "latest/" %}" title="{{ blog. title }} - Latest Entries" type="application/rss+xml" rel="alternate"/>{% endblock %}
{% block head_extra %}<link href="{% url djog_feed "latest/" %}" title="{{ blog.title }} - Latest Entries" type="application/rss+xml" rel="alternate"/>{% endblock %}
{% block rss %}<a href="{% url djog_feed "latest/" %}">RSS</a>{% endblock %}


Expand Down
2 changes: 1 addition & 1 deletion djog/templates/djog/entry_date.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}

{% block title %}Entries for {% if year %}{{ year }}{% endif %}{% if month %}{{ month|date:"F, Y" }}{% endif %}{% if day %}{{ day|date:"F j, Y" }}{% endif %}{% endblock %}
{% block head_extra %}<link href="{% url djog_feed "latest/" %}" title="{{ blog. title }} - Latest Entries" type="application/rss+xml" rel="alternate"/>{% endblock %}
{% block head_extra %}<link href="{% url djog_feed "latest/" %}" title="{{ blog.title }} - Latest Entries" type="application/rss+xml" rel="alternate"/>{% endblock %}
{% block rss %}<a href="{% url djog_feed "latest/" %}s">RSS</a>{% endblock %}


Expand Down
2 changes: 1 addition & 1 deletion djog/templates/djog/entry_detail.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}

{% block title %}{{ object.title|escape }}{% endblock %}
{% block head_extra %}<link href="{{ object.get_rss_url }}" title="{{ blog. title }} - Comments on &quot;{{ object.title }}&quot;" type="application/rss+xml" rel="alternate"/>{% endblock %}
{% block head_extra %}<link href="{{ object.get_rss_url }}" title="{{ blog.title }} - Comments on &quot;{{ object.title }}&quot;" type="application/rss+xml" rel="alternate"/>{% endblock %}
{% block rss %}<a href="{{ object.get_rss_url }}">RSS</a>{% endblock %}


Expand Down
2 changes: 1 addition & 1 deletion djog/templates/djog/search.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% load filters %}
{% block title %}Search Results for &quot;{{ term|escape }}&quot;{% endblock %}
{% block head_extra %}<link href="{% url djog_feed term|escape|searchify %}" title="{{ blog. title }} - Search Results for &quot;{{ term|escape }}&quot;" type="application/rss+xml" rel="alternate" />{% endblock %}
{% block head_extra %}<link href="{% url djog_feed term|escape|searchify %}" title="{{ blog.title }} - Search Results for &quot;{{ term|escape }}&quot;" type="application/rss+xml" rel="alternate" />{% endblock %}
{% block rss %}<a href="{% url djog_feed term|escape|searchify %}">RSS</a>{% endblock %}

{% block content %}
Expand Down
2 changes: 1 addition & 1 deletion djog/templates/djog/tag_list.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}

{% block title %}Entries tagged with {{ tag }}{% endblock %}
{% block head_extra %}<link href="{{ tag.get_rss_url }}" title="{{ blog. title }} - Latest Entries" type="application/rss+xml" rel="alternate"/>{% endblock %}
{% block head_extra %}<link href="{{ tag.get_rss_url }}" title="{{ blog.title }} - Latest Entries" type="application/rss+xml" rel="alternate"/>{% endblock %}
{% block rss %}<a href="{{ tag.get_rss_url }}">RSS</a>{% endblock %}

{% block content %}
Expand Down

0 comments on commit 1d4cbb7

Please sign in to comment.