diff --git a/nikola/data/themes/base/templates/sectionindex.tmpl b/nikola/data/themes/base/templates/sectionindex.tmpl
index 8eabec25d3..1402690c29 100644
--- a/nikola/data/themes/base/templates/sectionindex.tmpl
+++ b/nikola/data/themes/base/templates/sectionindex.tmpl
@@ -1,17 +1,17 @@
## -*- coding: utf-8 -*-
<%inherit file="index.tmpl"/>
-<%namespace name="feed" file="feed_helper.tmpl" import="*"/>
+<%namespace name="translation_links" file="translation_link_helper.tmpl" import="*"/>
<%block name="extra_head">
${parent.extra_head()}
- ${feed.head(section)}
+ ${translation_links.head(section)}
%block>
<%block name="content">
- ${feed.link(section)}
+ ${translation_links.link(section)}
${parent.content()}
diff --git a/nikola/data/themes/base/templates/tag.tmpl b/nikola/data/themes/base/templates/tag.tmpl
index ab9197c6b6..a2cc7cc9be 100644
--- a/nikola/data/themes/base/templates/tag.tmpl
+++ b/nikola/data/themes/base/templates/tag.tmpl
@@ -1,10 +1,10 @@
## -*- coding: utf-8 -*-
<%inherit file="list_post.tmpl"/>
-<%namespace name="feed" file="feed_helper.tmpl" import="*"/>
+<%namespace name="translation_links" file="translation_link_helper.tmpl" import="*"/>
<%block name="extra_head">
${parent.extra_head()}
- ${feed.head(tag)}
+ ${translation_links.head(tag)}
%block>
@@ -24,7 +24,7 @@
%endif
- ${feed.link(tag)}
+ ${translation_links.link(tag)}
%if has_other_languages and other_languages:
diff --git a/nikola/data/themes/base/templates/tagindex.tmpl b/nikola/data/themes/base/templates/tagindex.tmpl
index 0d654a214d..e9c1ef4a22 100644
--- a/nikola/data/themes/base/templates/tagindex.tmpl
+++ b/nikola/data/themes/base/templates/tagindex.tmpl
@@ -1,6 +1,6 @@
## -*- coding: utf-8 -*-
<%inherit file="index.tmpl"/>
-<%namespace name="feed" file="feed_helper.tmpl" import="*"/>
+<%namespace name="translation_links" file="translation_link_helper.tmpl" import="*"/>
<%block name="content_header">
${parent.content_header()}
@@ -22,5 +22,5 @@
<%block name="extra_head">
${parent.extra_head()}
- ${feed.head(tag)}
+ ${translation_links.head(tag)}
%block>
diff --git a/nikola/data/themes/base/templates/feed_helper.tmpl b/nikola/data/themes/base/templates/translation_link_helper.tmpl
similarity index 93%
rename from nikola/data/themes/base/templates/feed_helper.tmpl
rename to nikola/data/themes/base/templates/translation_link_helper.tmpl
index fc7880df73..06733f0756 100644
--- a/nikola/data/themes/base/templates/feed_helper.tmpl
+++ b/nikola/data/themes/base/templates/translation_link_helper.tmpl
@@ -38,6 +38,11 @@
% endif
% endif
% endif
+ % if has_other_languages and other_languages:
+ % for language, classification, _ in other_languages:
+
+ % endfor
+ % endif
%def>
<%def name="link(classification)">
diff --git a/nikola/data/themes/bootstrap3-jinja/templates/base_helper.tmpl b/nikola/data/themes/bootstrap3-jinja/templates/base_helper.tmpl
index 3dcba21f2d..12ad41954d 100644
--- a/nikola/data/themes/bootstrap3-jinja/templates/base_helper.tmpl
+++ b/nikola/data/themes/bootstrap3-jinja/templates/base_helper.tmpl
@@ -1,7 +1,7 @@
{# -*- coding: utf-8 -*- #}
{% import 'annotation_helper.tmpl' as notes with context %}
-{% import 'feed_helper.tmpl' as feed with context %}
+{% import 'translation_link_helper.tmpl' as translation_links with context %}
{% macro html_headstart() %}
{% if meta_generator_tag %}
{% endif %}
- {{ feed.head() }}
- {{ html_feedlinks() }}
+ {{ translation_links.head() }}
{% if favicons %}
@@ -162,7 +161,7 @@ lang="{{ lang }}">
{% endmacro %}
{% macro html_feedlinks() %}
- {{ feed.head() }}
+ {{ translation_links.head() }}
{% endmacro %}
{% macro html_translations() %}
diff --git a/nikola/data/themes/bootstrap3/templates/base_helper.tmpl b/nikola/data/themes/bootstrap3/templates/base_helper.tmpl
index 717fbd2e1a..1855c0ccb7 100644
--- a/nikola/data/themes/bootstrap3/templates/base_helper.tmpl
+++ b/nikola/data/themes/bootstrap3/templates/base_helper.tmpl
@@ -1,7 +1,7 @@
## -*- coding: utf-8 -*-
<%namespace name="notes" file="annotation_helper.tmpl" import="*" />
-<%namespace name="feed" file="feed_helper.tmpl" import="*" />
+<%namespace name="translation_links" file="translation_link_helper.tmpl" import="*" />
<%def name="html_headstart()">
% if meta_generator_tag:
% endif
- ${feed.head()}
- ${html_feedlinks()}
+ ${translation_links.head()}
%if favicons:
@@ -162,7 +161,7 @@ lang="${lang}">
%def>
<%def name="html_feedlinks()">
- ${feed.head()}
+ ${translation_links.head()}
%def>
<%def name="html_translations()">