Skip to content

Commit

Permalink
Fixed names.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Jun 10, 2017
1 parent e1d0235 commit e17cb8c
Show file tree
Hide file tree
Showing 22 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion nikola/data/themes/base-jinja/templates/archiveindex.tmpl
@@ -1,7 +1,7 @@
{# -*- coding: utf-8 -*- #}
{% extends 'index.tmpl' %}
{% import 'archive_navigation_helper.tmpl' as archive_nav with context %}
{% import 'feeds_translations_helper.tmpl.tmpl' as feeds_translations with context %}
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}

{% block extra_head %}
{{ super() }}
Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base-jinja/templates/author.tmpl
@@ -1,6 +1,6 @@
{# -*- coding: utf-8 -*- #}
{% extends 'list_post.tmpl' %}
{% import 'feeds_translations_helper.tmpl.tmpl' as feeds_translations with context %}
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}

{% block extra_head %}
{{ super() }}
Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base-jinja/templates/authorindex.tmpl
@@ -1,6 +1,6 @@
{# -*- coding: utf-8 -*- #}
{% extends 'index.tmpl' %}
{% import 'feeds_translations_helper.tmpl.tmpl' as feeds_translations with context %}
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}

{% block extra_head %}
{{ super() }}
Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base-jinja/templates/base_helper.tmpl
@@ -1,5 +1,5 @@
{# -*- coding: utf-8 -*- #}
{% import 'feeds_translations_helper.tmpl.tmpl' as feeds_translations with context %}
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}

{% macro html_headstart() %}
<!DOCTYPE html>
Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base-jinja/templates/index.tmpl
Expand Up @@ -3,7 +3,7 @@
{% import 'math_helper.tmpl' as math with context %}
{% import 'comments_helper.tmpl' as comments with context %}
{% import 'pagination_helper.tmpl' as pagination with context %}
{% import 'feeds_translations_helper.tmpl.tmpl' as feeds_translations with context %}
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}
{% extends 'base.tmpl' %}

{% block extra_head %}
Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base-jinja/templates/list.tmpl
@@ -1,7 +1,7 @@
{# -*- coding: utf-8 -*- #}
{% extends 'base.tmpl' %}
{% import 'archive_navigation_helper.tmpl' as archive_nav with context %}
{% import 'feeds_translations_helper.tmpl.tmpl' as feeds_translations with context %}
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}

{% block content %}
<article class="listpage">
Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base-jinja/templates/list_post.tmpl
@@ -1,7 +1,7 @@
{# -*- coding: utf-8 -*- #}
{% extends 'base.tmpl' %}
{% import 'archive_navigation_helper.tmpl' as archive_nav with context %}
{% import 'feeds_translations_helper.tmpl.tmpl' as feeds_translations with context %}
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}

{% block content %}
<article class="listpage">
Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base-jinja/templates/sectionindex.tmpl
@@ -1,6 +1,6 @@
{# -*- coding: utf-8 -*- #}
{% extends 'index.tmpl' %}
{% import 'feeds_translations_helper.tmpl.tmpl' as feeds_translations with context %}
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}

{% block extra_head %}
{{ super() }}
Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base-jinja/templates/tag.tmpl
@@ -1,6 +1,6 @@
{# -*- coding: utf-8 -*- #}
{% extends 'list_post.tmpl' %}
{% import 'feeds_translations_helper.tmpl.tmpl' as feeds_translations with context %}
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}

{% block extra_head %}
{{ super() }}
Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base-jinja/templates/tagindex.tmpl
@@ -1,6 +1,6 @@
{# -*- coding: utf-8 -*- #}
{% extends 'index.tmpl' %}
{% import 'feeds_translations_helper.tmpl.tmpl' as feeds_translations with context %}
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}

{% block content_header %}
{{ parent.content_header() }}
Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base/templates/archiveindex.tmpl
@@ -1,7 +1,7 @@
## -*- coding: utf-8 -*-
<%inherit file="index.tmpl"/>
<%namespace name="archive_nav" file="archive_navigation_helper.tmpl" import="*"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl.tmpl" import="*"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>

<%block name="extra_head">
${parent.extra_head()}
Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base/templates/author.tmpl
@@ -1,6 +1,6 @@
## -*- coding: utf-8 -*-
<%inherit file="list_post.tmpl"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl.tmpl" import="*"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>

<%block name="extra_head">
${parent.extra_head()}
Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base/templates/authorindex.tmpl
@@ -1,6 +1,6 @@
## -*- coding: utf-8 -*-
<%inherit file="index.tmpl"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl.tmpl" import="*"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>

<%block name="extra_head">
${parent.extra_head()}
Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base/templates/base_helper.tmpl
@@ -1,5 +1,5 @@
## -*- coding: utf-8 -*-
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl.tmpl" import="*"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>

<%def name="html_headstart()">
<!DOCTYPE html>
Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base/templates/index.tmpl
Expand Up @@ -3,7 +3,7 @@
<%namespace name="math" file="math_helper.tmpl"/>
<%namespace name="comments" file="comments_helper.tmpl"/>
<%namespace name="pagination" file="pagination_helper.tmpl"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl.tmpl" import="*"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>
<%inherit file="base.tmpl"/>

<%block name="extra_head">
Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base/templates/list.tmpl
@@ -1,7 +1,7 @@
## -*- coding: utf-8 -*-
<%inherit file="base.tmpl"/>
<%namespace name="archive_nav" file="archive_navigation_helper.tmpl" import="*"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl.tmpl" import="*"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>

<%block name="content">
<article class="listpage">
Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base/templates/list_post.tmpl
@@ -1,7 +1,7 @@
## -*- coding: utf-8 -*-
<%inherit file="base.tmpl"/>
<%namespace name="archive_nav" file="archive_navigation_helper.tmpl" import="*"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl.tmpl" import="*"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>

<%block name="content">
<article class="listpage">
Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base/templates/sectionindex.tmpl
@@ -1,6 +1,6 @@
## -*- coding: utf-8 -*-
<%inherit file="index.tmpl"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl.tmpl" import="*"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>

<%block name="extra_head">
${parent.extra_head()}
Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base/templates/tag.tmpl
@@ -1,6 +1,6 @@
## -*- coding: utf-8 -*-
<%inherit file="list_post.tmpl"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl.tmpl" import="*"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>

<%block name="extra_head">
${parent.extra_head()}
Expand Down
2 changes: 1 addition & 1 deletion nikola/data/themes/base/templates/tagindex.tmpl
@@ -1,6 +1,6 @@
## -*- coding: utf-8 -*-
<%inherit file="index.tmpl"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl.tmpl" import="*"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>

<%block name="content_header">
${parent.content_header()}
Expand Down
@@ -1,7 +1,7 @@
{# -*- coding: utf-8 -*- #}

{% import 'annotation_helper.tmpl' as notes with context %}
{% import 'translation_link_helper.tmpl' as translation_links with context %}
{% import 'feeds_translations_helper.tmpl' as feeds_translations with context %}
{% macro html_headstart() %}
<!DOCTYPE html>
<html
Expand Down Expand Up @@ -45,7 +45,7 @@ lang="{{ lang }}">
{% if meta_generator_tag %}
<meta name="generator" content="Nikola (getnikola.com)">
{% endif %}
{{ translation_links.head() }}
{{ feeds_translations.head() }}
<link rel="canonical" href="{{ abs_link(permalink) }}">

{% if favicons %}
Expand Down Expand Up @@ -161,7 +161,7 @@ lang="{{ lang }}">
{% endmacro %}

{% macro html_feedlinks() %}
{{ translation_links.head() }}
{{ feeds_translations.head() }}
{% endmacro %}

{% macro html_translations() %}
Expand Down
6 changes: 3 additions & 3 deletions 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="translation_links" file="translation_link_helper.tmpl" import="*" />
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>
<%def name="html_headstart()">
<!DOCTYPE html>
<html
Expand Down Expand Up @@ -45,7 +45,7 @@ lang="${lang}">
% if meta_generator_tag:
<meta name="generator" content="Nikola (getnikola.com)">
% endif
${translation_links.head()}
${feeds_translations.head()}
<link rel="canonical" href="${abs_link(permalink)}">

%if favicons:
Expand Down Expand Up @@ -161,7 +161,7 @@ lang="${lang}">
</%def>

<%def name="html_feedlinks()">
${translation_links.head()}
${feeds_translations.head()}
</%def>

<%def name="html_translations()">
Expand Down

0 comments on commit e17cb8c

Please sign in to comment.