Skip to content

Commit e17cb8c

Browse files
committedJun 10, 2017
Fixed names.
1 parent e1d0235 commit e17cb8c

22 files changed

+26
-26
lines changed
 

‎nikola/data/themes/base-jinja/templates/archiveindex.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{# -*- coding: utf-8 -*- #}
22
{% extends 'index.tmpl' %}
33
{% import 'archive_navigation_helper.tmpl' as archive_nav with context %}
4-
{% import 'feeds_translations_helper.tmpl.tmpl' as feeds_translations with context %}
4+
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}
55

66
{% block extra_head %}
77
{{ super() }}

‎nikola/data/themes/base-jinja/templates/author.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{# -*- coding: utf-8 -*- #}
22
{% extends 'list_post.tmpl' %}
3-
{% import 'feeds_translations_helper.tmpl.tmpl' as feeds_translations with context %}
3+
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}
44

55
{% block extra_head %}
66
{{ super() }}

‎nikola/data/themes/base-jinja/templates/authorindex.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{# -*- coding: utf-8 -*- #}
22
{% extends 'index.tmpl' %}
3-
{% import 'feeds_translations_helper.tmpl.tmpl' as feeds_translations with context %}
3+
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}
44

55
{% block extra_head %}
66
{{ super() }}

‎nikola/data/themes/base-jinja/templates/base_helper.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{# -*- coding: utf-8 -*- #}
2-
{% import 'feeds_translations_helper.tmpl.tmpl' as feeds_translations with context %}
2+
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}
33

44
{% macro html_headstart() %}
55
<!DOCTYPE html>

‎nikola/data/themes/base-jinja/templates/index.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{% import 'math_helper.tmpl' as math with context %}
44
{% import 'comments_helper.tmpl' as comments with context %}
55
{% import 'pagination_helper.tmpl' as pagination with context %}
6-
{% import 'feeds_translations_helper.tmpl.tmpl' as feeds_translations with context %}
6+
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}
77
{% extends 'base.tmpl' %}
88

99
{% block extra_head %}

‎nikola/data/themes/base-jinja/templates/list.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{# -*- coding: utf-8 -*- #}
22
{% extends 'base.tmpl' %}
33
{% import 'archive_navigation_helper.tmpl' as archive_nav with context %}
4-
{% import 'feeds_translations_helper.tmpl.tmpl' as feeds_translations with context %}
4+
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}
55

66
{% block content %}
77
<article class="listpage">

‎nikola/data/themes/base-jinja/templates/list_post.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{# -*- coding: utf-8 -*- #}
22
{% extends 'base.tmpl' %}
33
{% import 'archive_navigation_helper.tmpl' as archive_nav with context %}
4-
{% import 'feeds_translations_helper.tmpl.tmpl' as feeds_translations with context %}
4+
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}
55

66
{% block content %}
77
<article class="listpage">

‎nikola/data/themes/base-jinja/templates/sectionindex.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{# -*- coding: utf-8 -*- #}
22
{% extends 'index.tmpl' %}
3-
{% import 'feeds_translations_helper.tmpl.tmpl' as feeds_translations with context %}
3+
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}
44

55
{% block extra_head %}
66
{{ super() }}

‎nikola/data/themes/base-jinja/templates/tag.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{# -*- coding: utf-8 -*- #}
22
{% extends 'list_post.tmpl' %}
3-
{% import 'feeds_translations_helper.tmpl.tmpl' as feeds_translations with context %}
3+
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}
44

55
{% block extra_head %}
66
{{ super() }}

‎nikola/data/themes/base-jinja/templates/tagindex.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{# -*- coding: utf-8 -*- #}
22
{% extends 'index.tmpl' %}
3-
{% import 'feeds_translations_helper.tmpl.tmpl' as feeds_translations with context %}
3+
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}
44

55
{% block content_header %}
66
{{ parent.content_header() }}

‎nikola/data/themes/base/templates/archiveindex.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## -*- coding: utf-8 -*-
22
<%inherit file="index.tmpl"/>
33
<%namespace name="archive_nav" file="archive_navigation_helper.tmpl" import="*"/>
4-
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl.tmpl" import="*"/>
4+
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>
55

66
<%block name="extra_head">
77
${parent.extra_head()}

‎nikola/data/themes/base/templates/author.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## -*- coding: utf-8 -*-
22
<%inherit file="list_post.tmpl"/>
3-
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl.tmpl" import="*"/>
3+
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>
44

55
<%block name="extra_head">
66
${parent.extra_head()}

‎nikola/data/themes/base/templates/authorindex.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## -*- coding: utf-8 -*-
22
<%inherit file="index.tmpl"/>
3-
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl.tmpl" import="*"/>
3+
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>
44

55
<%block name="extra_head">
66
${parent.extra_head()}

‎nikola/data/themes/base/templates/base_helper.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## -*- coding: utf-8 -*-
2-
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl.tmpl" import="*"/>
2+
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>
33

44
<%def name="html_headstart()">
55
<!DOCTYPE html>

‎nikola/data/themes/base/templates/index.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<%namespace name="math" file="math_helper.tmpl"/>
44
<%namespace name="comments" file="comments_helper.tmpl"/>
55
<%namespace name="pagination" file="pagination_helper.tmpl"/>
6-
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl.tmpl" import="*"/>
6+
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>
77
<%inherit file="base.tmpl"/>
88

99
<%block name="extra_head">

‎nikola/data/themes/base/templates/list.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## -*- coding: utf-8 -*-
22
<%inherit file="base.tmpl"/>
33
<%namespace name="archive_nav" file="archive_navigation_helper.tmpl" import="*"/>
4-
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl.tmpl" import="*"/>
4+
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>
55

66
<%block name="content">
77
<article class="listpage">

‎nikola/data/themes/base/templates/list_post.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## -*- coding: utf-8 -*-
22
<%inherit file="base.tmpl"/>
33
<%namespace name="archive_nav" file="archive_navigation_helper.tmpl" import="*"/>
4-
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl.tmpl" import="*"/>
4+
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>
55

66
<%block name="content">
77
<article class="listpage">

‎nikola/data/themes/base/templates/sectionindex.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## -*- coding: utf-8 -*-
22
<%inherit file="index.tmpl"/>
3-
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl.tmpl" import="*"/>
3+
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>
44

55
<%block name="extra_head">
66
${parent.extra_head()}

‎nikola/data/themes/base/templates/tag.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## -*- coding: utf-8 -*-
22
<%inherit file="list_post.tmpl"/>
3-
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl.tmpl" import="*"/>
3+
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>
44

55
<%block name="extra_head">
66
${parent.extra_head()}

‎nikola/data/themes/base/templates/tagindex.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## -*- coding: utf-8 -*-
22
<%inherit file="index.tmpl"/>
3-
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl.tmpl" import="*"/>
3+
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>
44

55
<%block name="content_header">
66
${parent.content_header()}

‎nikola/data/themes/bootstrap3-jinja/templates/base_helper.tmpl

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{# -*- coding: utf-8 -*- #}
22

33
{% import 'annotation_helper.tmpl' as notes with context %}
4-
{% import 'translation_link_helper.tmpl' as translation_links with context %}
4+
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}
55
{% macro html_headstart() %}
66
<!DOCTYPE html>
77
<html
@@ -45,7 +45,7 @@ lang="{{ lang }}">
4545
{% if meta_generator_tag %}
4646
<meta name="generator" content="Nikola (getnikola.com)">
4747
{% endif %}
48-
{{ translation_links.head() }}
48+
{{ feeds_translations.head() }}
4949
<link rel="canonical" href="{{ abs_link(permalink) }}">
5050

5151
{% if favicons %}
@@ -161,7 +161,7 @@ lang="{{ lang }}">
161161
{% endmacro %}
162162

163163
{% macro html_feedlinks() %}
164-
{{ translation_links.head() }}
164+
{{ feeds_translations.head() }}
165165
{% endmacro %}
166166

167167
{% macro html_translations() %}

‎nikola/data/themes/bootstrap3/templates/base_helper.tmpl

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## -*- coding: utf-8 -*-
22

33
<%namespace name="notes" file="annotation_helper.tmpl" import="*" />
4-
<%namespace name="translation_links" file="translation_link_helper.tmpl" import="*" />
4+
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>
55
<%def name="html_headstart()">
66
<!DOCTYPE html>
77
<html
@@ -45,7 +45,7 @@ lang="${lang}">
4545
% if meta_generator_tag:
4646
<meta name="generator" content="Nikola (getnikola.com)">
4747
% endif
48-
${translation_links.head()}
48+
${feeds_translations.head()}
4949
<link rel="canonical" href="${abs_link(permalink)}">
5050

5151
%if favicons:
@@ -161,7 +161,7 @@ lang="${lang}">
161161
</%def>
162162

163163
<%def name="html_feedlinks()">
164-
${translation_links.head()}
164+
${feeds_translations.head()}
165165
</%def>
166166

167167
<%def name="html_translations()">

0 commit comments

Comments
 (0)
Please sign in to comment.