Skip to content

Commit

Permalink
Fix #2600 -- fix author indexes by removing small typo
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Dec 20, 2016
1 parent 4c9eb72 commit 339171d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nikola/data/themes/base-jinja/templates/authorindex.tmpl
Expand Up @@ -3,7 +3,7 @@

{% block extra_head %}
{{ super() }}
{% if tranlations|length > 1 and generate_atom %}
{% if translations|length > 1 and generate_atom %}
{% for language in translations|sort %}
<link rel="alternate" type="application/atom+xml" title="Atom for the {{ author|e }} section ({{ language }})" href="{{ _link(kind + "_atom", author, language) }}">
{% endfor %}
Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base/templates/authorindex.tmpl
Expand Up @@ -3,7 +3,7 @@

<%block name="extra_head">
${parent.extra_head()}
%if len(tranlations) > 1 and generate_atom:
%if len(translations) > 1 and generate_atom:
%for language in sorted(translations):
<link rel="alternate" type="application/atom+xml" title="Atom for the ${author|h} section (${language})" href="${_link(kind + "_atom", author, language)}">
%endfor
Expand Down

0 comments on commit 339171d

Please sign in to comment.