Skip to content

Commit

Permalink
Merge pull request getpelican#84 from rdegges/fix-broken-archives-tux…
Browse files Browse the repository at this point in the history
…lite-tbs

Fixing broken support for `ARCHIVES_URL` in tuxlite-tbs theme.
  • Loading branch information
justinmayer committed Mar 22, 2013
2 parents 619a538 + fe933f8 commit 277c3bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tuxlite_tbs/templates/archives.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ <h1>Archives</h1>
{% for article in dates %}
<tr>
<td>{{ article.date.strftime("%d %b %Y") }}</td>
<td><a href='{{ article.url }}'>{{ article.title }}</a></td>
<td><a href='{{ SITEURL }}/{{ article.url }}'>{{ article.title }}</a></td>
</tr>
{% endfor %}
</tbody>
Expand Down
2 changes: 1 addition & 1 deletion tuxlite_tbs/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
Site
</li>

<li><a href="{{ SITEURL }}/archives.html">Archives</a>
<li><a href="{{ SITEURL }}/{{ ARCHIVES_URL }}">Archives</a>
<li><a href="{{ SITEURL }}/tags.html">Tags</a>
<li><a href="{{ FEED_DOMAIN }}/{{ FEED_ATOM }}" rel="alternate">Atom feed</a></li>
{% if FEED_RSS %}
Expand Down

0 comments on commit 277c3bd

Please sign in to comment.