Skip to content

Commit 5a2b92b

Browse files
committedFeb 17, 2016
Version 7.5.6
Signed-off-by: Roberto Alsina <ralsina@netmanagers.com.ar>
1 parent 5cfa9de commit 5a2b92b

File tree

10 files changed

+12
-9
lines changed

10 files changed

+12
-9
lines changed
 

‎docs/extending.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Extending Nikola
1010
================
1111

12-
:Version: 7.7.5
12+
:Version: 7.5.6
1313
:Author: Roberto Alsina <ralsina@netmanagers.com.ar>
1414

1515
.. class:: alert alert-info pull-right

‎docs/man/nikola.1.gz

0 Bytes
Binary file not shown.

‎docs/man/nikola.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Nikola
66
A Static Site and Blog Generator
77
--------------------------------
88

9-
:Version: Nikola v7.7.5
9+
:Version: Nikola v7.5.6
1010
:Manual section: 1
1111
:Manual group: User Commands
1212

‎docs/manual.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
The Nikola Handbook
1010
===================
1111

12-
:Version: 7.7.5
12+
:Version: 7.5.6
1313

1414
.. class:: alert alert-info pull-right
1515

‎docs/social_buttons.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Using Alternative Social Buttons with Nikola
1010
============================================
1111

12-
:Version: 7.7.5
12+
:Version: 7.5.6
1313

1414
.. class:: alert alert-info pull-right
1515

‎docs/sphinx/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@
5454
# built documents.
5555
#
5656
# The short X.Y version.
57-
version = '7.7.5'
57+
version = '7.5.6'
5858
# The full version, including alpha/beta/rc tags.
59-
release = '7.7.5'
59+
release = '7.5.6'
6060

6161
# The language for content autogenerated by Sphinx. Refer to documentation
6262
# for a list of supported languages.

‎docs/theming.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Theming Nikola
1010
==============
1111

12-
:Version: 7.7.5
12+
:Version: 7.5.6
1313
:Author: Roberto Alsina <ralsina@netmanagers.com.ar>
1414

1515
.. class:: alert alert-info pull-right

‎nikola/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
from __future__ import absolute_import
3030
import os
3131

32-
__version__ = "7.7.5"
32+
__version__ = "7.5.6"
3333
DEBUG = bool(os.getenv('NIKOLA_DEBUG'))
3434

3535
from .nikola import Nikola # NOQA

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

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212

1313
{% block content %}
1414
{% block content_header %}{% endblock %}
15+
{% if 'main_index' in pagekind %}
16+
{{ front_index_header }}
17+
{% endif %}
1518
<div class="postindex">
1619
{% for post in posts %}
1720
<article class="h-entry post-{{ post.meta('type') }}">

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def run(self):
113113

114114

115115
setup(name='Nikola',
116-
version='7.7.5',
116+
version='7.5.6',
117117
description='A modular, fast, simple, static website and blog generator',
118118
long_description=open('README.rst').read(),
119119
author='Roberto Alsina and others',

0 commit comments

Comments
 (0)
Please sign in to comment.