From 59750b3a8554f69f5ae632c4b98a9b63d95ea077 Mon Sep 17 00:00:00 2001 From: Allen Zheng Date: Fri, 6 Jul 2018 18:24:03 -0400 Subject: [PATCH] Normalize formatting of simple/notmyidea themes I used the tool [htmlbeautify][1] like so htmlbeautifier -t 4 -b 1 pelican/themes/simple/templates/*.html htmlbeautifier -t 4 -b 1 pelican/themes/notmyidea/templates/*.html and then manually adjusted the output. The final result follows the following rules. - 4-space indentation - Multiline nested tags like ... nested content ... are broken up into ... nested content ... but if everything is on one like this ... nested content ... it's OK. - Treat new blocks like tags when indenting. E.g. {% if cond %}

hello

{% endif %} However, observe the following exceptions: - Don't indent inside a {% block %}, {% macro %}, or if the block takes up the entire file. - If a {% for ... %} block takes up the entire content of an HTML tag, don't indent it. E.g. I tried to follow the examples in the official Jinja documentation as closely as possible: . Used `git diff --check` to perform basic whitespace checks. [1]: [https://github.com/threedaymonk/htmlbeautifier] --- .../basic/a-markdown-powered-article.html | 71 ++-- pelican/tests/output/basic/archives.html | 88 ++--- pelican/tests/output/basic/article-1.html | 71 ++-- pelican/tests/output/basic/article-2.html | 71 ++-- pelican/tests/output/basic/article-3.html | 71 ++-- .../output/basic/author/alexis-metaireau.html | 120 +++--- pelican/tests/output/basic/authors.html | 42 ++- pelican/tests/output/basic/categories.html | 56 +-- pelican/tests/output/basic/category/bar.html | 65 ++-- pelican/tests/output/basic/category/cat1.html | 162 ++++---- pelican/tests/output/basic/category/misc.html | 165 ++++---- pelican/tests/output/basic/category/yeah.html | 73 ++-- .../output/basic/drafts/a-draft-article.html | 71 ++-- .../basic/filename_metadata-example.html | 71 ++-- pelican/tests/output/basic/index.html | 355 ++++++++++-------- pelican/tests/output/basic/oh-yeah.html | 75 ++-- .../tests/output/basic/override/index.html | 42 ++- .../pages/this-is-a-test-hidden-page.html | 42 ++- .../basic/pages/this-is-a-test-page.html | 42 ++- .../tests/output/basic/second-article-fr.html | 76 ++-- .../tests/output/basic/second-article.html | 76 ++-- pelican/tests/output/basic/tag/bar.html | 152 ++++---- pelican/tests/output/basic/tag/baz.html | 71 ++-- pelican/tests/output/basic/tag/foo.html | 119 +++--- pelican/tests/output/basic/tag/foobar.html | 73 ++-- pelican/tests/output/basic/tag/oh.html | 42 ++- pelican/tests/output/basic/tag/yeah.html | 65 ++-- pelican/tests/output/basic/tags.html | 42 ++- .../output/basic/this-is-a-super-article.html | 83 ++-- pelican/tests/output/basic/unbelievable.html | 71 ++-- .../custom/a-markdown-powered-article.html | 128 ++++--- pelican/tests/output/custom/archives.html | 112 +++--- pelican/tests/output/custom/article-1.html | 128 ++++--- pelican/tests/output/custom/article-2.html | 128 ++++--- pelican/tests/output/custom/article-3.html | 128 ++++--- .../custom/author/alexis-metaireau.html | 205 +++++----- .../custom/author/alexis-metaireau2.html | 220 ++++++----- .../custom/author/alexis-metaireau3.html | 142 +++---- pelican/tests/output/custom/authors.html | 66 ++-- pelican/tests/output/custom/categories.html | 80 ++-- pelican/tests/output/custom/category/bar.html | 92 ++--- .../tests/output/custom/category/cat1.html | 202 +++++----- .../tests/output/custom/category/misc.html | 205 +++++----- .../tests/output/custom/category/yeah.html | 98 ++--- .../output/custom/drafts/a-draft-article.html | 98 ++--- .../custom/filename_metadata-example.html | 128 ++++--- pelican/tests/output/custom/index.html | 205 +++++----- pelican/tests/output/custom/index2.html | 220 ++++++----- pelican/tests/output/custom/index3.html | 142 +++---- .../tests/output/custom/jinja2_template.html | 66 ++-- pelican/tests/output/custom/oh-yeah-fr.html | 132 +++---- pelican/tests/output/custom/oh-yeah.html | 133 +++---- .../tests/output/custom/override/index.html | 66 ++-- .../pages/this-is-a-test-hidden-page.html | 66 ++-- .../custom/pages/this-is-a-test-page.html | 66 ++-- .../output/custom/second-article-fr.html | 133 +++---- .../tests/output/custom/second-article.html | 133 +++---- pelican/tests/output/custom/tag/bar.html | 184 +++++---- pelican/tests/output/custom/tag/baz.html | 128 ++++--- pelican/tests/output/custom/tag/foo.html | 148 ++++---- pelican/tests/output/custom/tag/foobar.html | 98 ++--- pelican/tests/output/custom/tag/oh.html | 66 ++-- pelican/tests/output/custom/tag/yeah.html | 92 ++--- pelican/tests/output/custom/tags.html | 66 ++-- .../custom/this-is-a-super-article.html | 137 +++---- pelican/tests/output/custom/unbelievable.html | 128 ++++--- .../tests/output/custom_locale/archives.html | 112 +++--- .../author/alexis-metaireau.html | 205 +++++----- .../author/alexis-metaireau2.html | 220 ++++++----- .../author/alexis-metaireau3.html | 142 +++---- .../tests/output/custom_locale/authors.html | 66 ++-- .../output/custom_locale/categories.html | 80 ++-- .../output/custom_locale/category/bar.html | 92 ++--- .../output/custom_locale/category/cat1.html | 202 +++++----- .../output/custom_locale/category/misc.html | 205 +++++----- .../output/custom_locale/category/yeah.html | 98 ++--- .../custom_locale/drafts/a-draft-article.html | 98 ++--- pelican/tests/output/custom_locale/index.html | 205 +++++----- .../tests/output/custom_locale/index2.html | 220 ++++++----- .../tests/output/custom_locale/index3.html | 142 +++---- .../output/custom_locale/jinja2_template.html | 66 ++-- .../output/custom_locale/oh-yeah-fr.html | 132 +++---- .../output/custom_locale/override/index.html | 66 ++-- .../pages/this-is-a-test-hidden-page.html | 66 ++-- .../pages/this-is-a-test-page.html | 66 ++-- .../02/this-is-a-super-article/index.html | 137 +++---- .../2010/octobre/15/unbelievable/index.html | 128 ++++--- .../posts/2010/octobre/20/oh-yeah/index.html | 133 +++---- .../20/a-markdown-powered-article/index.html | 128 ++++--- .../2011/février/17/article-1/index.html | 128 ++++--- .../2011/février/17/article-2/index.html | 128 ++++--- .../2011/février/17/article-3/index.html | 128 ++++--- .../2012/février/29/second-article/index.html | 133 +++---- .../30/filename_metadata-example/index.html | 128 ++++--- .../custom_locale/second-article-fr.html | 133 +++---- .../tests/output/custom_locale/tag/bar.html | 184 +++++---- .../tests/output/custom_locale/tag/baz.html | 128 ++++--- .../tests/output/custom_locale/tag/foo.html | 148 ++++---- .../output/custom_locale/tag/foobar.html | 98 ++--- .../tests/output/custom_locale/tag/oh.html | 66 ++-- .../tests/output/custom_locale/tag/yeah.html | 92 ++--- pelican/tests/output/custom_locale/tags.html | 66 ++-- .../themes/notmyidea/templates/analytics.html | 65 ++-- .../themes/notmyidea/templates/archives.html | 14 +- .../themes/notmyidea/templates/article.html | 61 +-- .../notmyidea/templates/article_infos.html | 37 +- pelican/themes/notmyidea/templates/base.html | 92 ++--- .../themes/notmyidea/templates/comments.html | 4 +- .../themes/notmyidea/templates/github.html | 10 +- pelican/themes/notmyidea/templates/index.html | 104 ++--- pelican/themes/notmyidea/templates/page.html | 2 +- .../notmyidea/templates/period_archives.html | 14 +- .../themes/notmyidea/templates/taglist.html | 4 +- .../notmyidea/templates/translations.html | 8 +- pelican/themes/simple/templates/article.html | 97 ++--- pelican/themes/simple/templates/author.html | 1 - pelican/themes/simple/templates/authors.html | 12 +- pelican/themes/simple/templates/base.html | 63 ++-- .../themes/simple/templates/categories.html | 12 +- pelican/themes/simple/templates/category.html | 1 - pelican/themes/simple/templates/index.html | 39 +- pelican/themes/simple/templates/page.html | 24 +- pelican/themes/simple/templates/tags.html | 12 +- .../themes/simple/templates/translations.html | 18 +- 124 files changed, 6632 insertions(+), 5823 deletions(-) diff --git a/pelican/tests/output/basic/a-markdown-powered-article.html b/pelican/tests/output/basic/a-markdown-powered-article.html index 9053d5fe..3433b328 100644 --- a/pelican/tests/output/basic/a-markdown-powered-article.html +++ b/pelican/tests/output/basic/a-markdown-powered-article.html @@ -1,65 +1,68 @@ - + A markdown powered article - + - +
-
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/archives.html b/pelican/tests/output/basic/archives.html index dcebef2c..70113b10 100644 --- a/pelican/tests/output/basic/archives.html +++ b/pelican/tests/output/basic/archives.html @@ -1,68 +1,70 @@ - + A Pelican Blog - + - +
-

Archives for A Pelican Blog

+

Archives for A Pelican Blog

-
-
Fri 30 November 2012
-
FILENAME_METADATA example
-
Wed 29 February 2012
-
Second article
-
Wed 20 April 2011
-
A markdown powered article
-
Thu 17 February 2011
-
Article 1
-
Thu 17 February 2011
-
Article 2
-
Thu 17 February 2011
-
Article 3
-
Thu 02 December 2010
-
This is a super article !
-
Wed 20 October 2010
-
Oh yeah !
-
Fri 15 October 2010
-
Unbelievable !
-
Sun 14 March 2010
-
The baz tag
-
+
+
Fri 30 November 2012
+
FILENAME_METADATA example
+
Wed 29 February 2012
+
Second article
+
Wed 20 April 2011
+
A markdown powered article
+
Thu 17 February 2011
+
Article 1
+
Thu 17 February 2011
+
Article 2
+
Thu 17 February 2011
+
Article 3
+
Thu 02 December 2010
+
This is a super article !
+
Wed 20 October 2010
+
Oh yeah !
+
Fri 15 October 2010
+
Unbelievable !
+
Sun 14 March 2010
+
The baz tag
+
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/article-1.html b/pelican/tests/output/basic/article-1.html index 758ddf06..b5a97785 100644 --- a/pelican/tests/output/basic/article-1.html +++ b/pelican/tests/output/basic/article-1.html @@ -1,64 +1,67 @@ - + Article 1 - + - +
-
-
-

- Article 1

-
+
+
+

+ Article 1 +

+
-
+
- - Published: Thu 17 February 2011 - + + Published: Thu 17 February 2011 + -

In cat1.

+

In cat1.

-

Article 1

+

Article 1

-
+
-
+
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/article-2.html b/pelican/tests/output/basic/article-2.html index 40d2cefd..95fbfe51 100644 --- a/pelican/tests/output/basic/article-2.html +++ b/pelican/tests/output/basic/article-2.html @@ -1,64 +1,67 @@ - + Article 2 - + - +
-
-
-

- Article 2

-
+
+
+

+ Article 2 +

+
-
+
- - Published: Thu 17 February 2011 - + + Published: Thu 17 February 2011 + -

In cat1.

+

In cat1.

-

Article 2

+

Article 2

-
+
-
+
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/article-3.html b/pelican/tests/output/basic/article-3.html index 1ef6b651..2aad3553 100644 --- a/pelican/tests/output/basic/article-3.html +++ b/pelican/tests/output/basic/article-3.html @@ -1,64 +1,67 @@ - + Article 3 - + - +
-
-
-

- Article 3

-
+
+
+

+ Article 3 +

+
-
+
- - Published: Thu 17 February 2011 - + + Published: Thu 17 February 2011 + -

In cat1.

+

In cat1.

-

Article 3

+

Article 3

-
+
-
+
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/author/alexis-metaireau.html b/pelican/tests/output/basic/author/alexis-metaireau.html index aa19e421..6845e972 100644 --- a/pelican/tests/output/basic/author/alexis-metaireau.html +++ b/pelican/tests/output/basic/author/alexis-metaireau.html @@ -1,43 +1,47 @@ - + A Pelican Blog - Alexis Métaireau - + - + - + +
+

Other articles

+
+
    -
  1. -
-
+ read more + + + + + + + +
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/authors.html b/pelican/tests/output/basic/authors.html index c2b695c0..ae6a4b6e 100644 --- a/pelican/tests/output/basic/authors.html +++ b/pelican/tests/output/basic/authors.html @@ -1,24 +1,26 @@ - + A Pelican Blog - Authors - + - +
@@ -30,21 +32,21 @@
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/categories.html b/pelican/tests/output/basic/categories.html index 934c224b..008683ad 100644 --- a/pelican/tests/output/basic/categories.html +++ b/pelican/tests/output/basic/categories.html @@ -1,49 +1,51 @@ - + A Pelican Blog - Categories - + - + -

Categories on A Pelican Blog

- +

Categories on A Pelican Blog

+
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/category/bar.html b/pelican/tests/output/basic/category/bar.html index 2d327f5f..ae1eafe3 100644 --- a/pelican/tests/output/basic/category/bar.html +++ b/pelican/tests/output/basic/category/bar.html @@ -1,64 +1,69 @@ - + A Pelican Blog - bar - + - + - +
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/category/cat1.html b/pelican/tests/output/basic/category/cat1.html index 9d8a8883..98095904 100644 --- a/pelican/tests/output/basic/category/cat1.html +++ b/pelican/tests/output/basic/category/cat1.html @@ -1,123 +1,137 @@ - + A Pelican Blog - cat1 - + - + - + +
+

Other articles

+
+
    -
  1. + read more + + + + -
  2. + read more + + + + -
  3. -
-
+ read more + + + + + + +
+
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/category/misc.html b/pelican/tests/output/basic/category/misc.html index 0542dba1..60f0aa4e 100644 --- a/pelican/tests/output/basic/category/misc.html +++ b/pelican/tests/output/basic/category/misc.html @@ -1,81 +1,89 @@ - + A Pelican Blog - misc - + - + - + +
+

Other articles

+
+
    -
  1. + read more + + + + -
  2. + read more + + + + -
  3. -
    -

    +

    -
    +
    - - Published: Sun 14 March 2010 - + + Published: Sun 14 March 2010 + -

    In misc.

    +

    In misc.

    -

    This article overrides the listening of the articles under the baz tag.

    +

    This article overrides the listening of the articles under the baz tag.

    - read more -
    -
  4. -
-
+ read more + + + + + + + +
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/category/yeah.html b/pelican/tests/output/basic/category/yeah.html index 2621e587..0410a685 100644 --- a/pelican/tests/output/basic/category/yeah.html +++ b/pelican/tests/output/basic/category/yeah.html @@ -1,43 +1,47 @@ - + A Pelican Blog - yeah - + - + - +
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/drafts/a-draft-article.html b/pelican/tests/output/basic/drafts/a-draft-article.html index 7fe1b180..cf752a42 100644 --- a/pelican/tests/output/basic/drafts/a-draft-article.html +++ b/pelican/tests/output/basic/drafts/a-draft-article.html @@ -1,65 +1,68 @@ - + A draft article - + - +
-
-
-

- A draft article

-
+
+
+

+ A draft article +

+
-
+
- - Published: - + + Published: + -

In misc.

+

In misc.

-

This is a draft article, it should live under the /drafts/ folder and not be +

This is a draft article, it should live under the /drafts/ folder and not be listed anywhere else.

-
+
-
+
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/filename_metadata-example.html b/pelican/tests/output/basic/filename_metadata-example.html index 98930240..f7da85fd 100644 --- a/pelican/tests/output/basic/filename_metadata-example.html +++ b/pelican/tests/output/basic/filename_metadata-example.html @@ -1,64 +1,67 @@ - + FILENAME_METADATA example - + - +
-
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/index.html b/pelican/tests/output/basic/index.html index 5b037545..c2d4d646 100644 --- a/pelican/tests/output/basic/index.html +++ b/pelican/tests/output/basic/index.html @@ -1,218 +1,248 @@ - + A Pelican Blog - + - + - + +
+

Other articles

+
+
    -
  1. + read more + + + + -
  2. + read more + + + + -
  3. + read more + + + + -
  4. + read more + + + + -
  5. + read more + + + + -
  6. + read more + + + + -
  7. + read more + + + + -
  8. + read more + + + + -
  9. -
    -

    +

    -
    +
    - - Published: Sun 14 March 2010 - + + Published: Sun 14 March 2010 + -

    In misc.

    +

    In misc.

    -

    This article overrides the listening of the articles under the baz tag.

    +

    This article overrides the listening of the articles under the baz tag.

    - read more -
    -
  10. -
-
+ read more + + + + + + + +
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/oh-yeah.html b/pelican/tests/output/basic/oh-yeah.html index df378418..49789de4 100644 --- a/pelican/tests/output/basic/oh-yeah.html +++ b/pelican/tests/output/basic/oh-yeah.html @@ -1,72 +1,77 @@ - + Oh yeah ! - + - +
-
-
-

- Oh yeah !

-
+
+
+

+ Oh yeah ! +

+
-
+
+ +

Why not ?

After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst ! YEAH !

alternate text
-
+
-
+
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/override/index.html b/pelican/tests/output/basic/override/index.html index 3b45f9e0..33e2c8c5 100644 --- a/pelican/tests/output/basic/override/index.html +++ b/pelican/tests/output/basic/override/index.html @@ -1,24 +1,26 @@ - + Override url/save_as - + - +

Override url/save_as

@@ -29,21 +31,21 @@ at a custom location.

- + \ No newline at end of file diff --git a/pelican/tests/output/basic/pages/this-is-a-test-hidden-page.html b/pelican/tests/output/basic/pages/this-is-a-test-hidden-page.html index 6e1bd4eb..1ec1470d 100644 --- a/pelican/tests/output/basic/pages/this-is-a-test-hidden-page.html +++ b/pelican/tests/output/basic/pages/this-is-a-test-hidden-page.html @@ -1,24 +1,26 @@ - + This is a test hidden page - + - +

This is a test hidden page

@@ -29,21 +31,21 @@ Anyone can see this page but it's not linked to anywhere!

- + \ No newline at end of file diff --git a/pelican/tests/output/basic/pages/this-is-a-test-page.html b/pelican/tests/output/basic/pages/this-is-a-test-page.html index ed9bce91..7cc40ccd 100644 --- a/pelican/tests/output/basic/pages/this-is-a-test-page.html +++ b/pelican/tests/output/basic/pages/this-is-a-test-page.html @@ -1,24 +1,26 @@ - + This is a test page - + - +

This is a test page

@@ -29,21 +31,21 @@
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/second-article-fr.html b/pelican/tests/output/basic/second-article-fr.html index 1e5f1ef9..b9ebc4d8 100644 --- a/pelican/tests/output/basic/second-article-fr.html +++ b/pelican/tests/output/basic/second-article-fr.html @@ -1,68 +1,72 @@ - + Deuxième article - + - + - +
-
-
-

- Deuxième article

-
+
+
+

+ Deuxième article +

+
-
+
- - Published: Wed 29 February 2012 - + + Published: Wed 29 February 2012 + -

In misc.

-

tags: foo bar baz

Translations: +

In misc.

+

tags: foo bar baz

+ Translations: en -

Ceci est un article, en français.

+

Ceci est un article, en français.

-
+
-
+
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/second-article.html b/pelican/tests/output/basic/second-article.html index 4485e9f8..28d4612b 100644 --- a/pelican/tests/output/basic/second-article.html +++ b/pelican/tests/output/basic/second-article.html @@ -1,68 +1,72 @@ - + Second article - + - + - +
-
-
-

- Second article

-
+
+
+

+ Second article +

+
-
+
- - Published: Wed 29 February 2012 - + + Published: Wed 29 February 2012 + -

In misc.

-

tags: foo bar baz

Translations: +

In misc.

+

tags: foo bar baz

+ Translations: fr -

This is some article, in english

+

This is some article, in english

-
+
-
+
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/tag/bar.html b/pelican/tests/output/basic/tag/bar.html index 7e977f0e..1a372e02 100644 --- a/pelican/tests/output/basic/tag/bar.html +++ b/pelican/tests/output/basic/tag/bar.html @@ -1,120 +1,136 @@ - + A Pelican Blog - bar - + - + - + +
+

Other articles

+
+
    -
  1. + read more + + + + -
  2. -
-
+ read more + + + + + + + +
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/tag/baz.html b/pelican/tests/output/basic/tag/baz.html index 48a11061..b9a8245e 100644 --- a/pelican/tests/output/basic/tag/baz.html +++ b/pelican/tests/output/basic/tag/baz.html @@ -1,64 +1,67 @@ - + The baz tag - + - +
-
-
-

- The baz tag

-
+
+
+

+ The baz tag +

+
-
+
- - Published: Sun 14 March 2010 - + + Published: Sun 14 March 2010 + -

In misc.

+

In misc.

-

This article overrides the listening of the articles under the baz tag.

+

This article overrides the listening of the articles under the baz tag.

-
+
-
+
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/tag/foo.html b/pelican/tests/output/basic/tag/foo.html index aad78781..f0417d7f 100644 --- a/pelican/tests/output/basic/tag/foo.html +++ b/pelican/tests/output/basic/tag/foo.html @@ -1,92 +1,103 @@ - + A Pelican Blog - foo - + - + - + +
+

Other articles

+
+
    -
  1. -
-
+ read more + + + + + + + +
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/tag/foobar.html b/pelican/tests/output/basic/tag/foobar.html index cc72782c..66959a69 100644 --- a/pelican/tests/output/basic/tag/foobar.html +++ b/pelican/tests/output/basic/tag/foobar.html @@ -1,43 +1,47 @@ - + A Pelican Blog - foobar - + - + - +
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/tag/oh.html b/pelican/tests/output/basic/tag/oh.html index 0993e43e..0401ca43 100644 --- a/pelican/tests/output/basic/tag/oh.html +++ b/pelican/tests/output/basic/tag/oh.html @@ -1,24 +1,26 @@ - + Oh Oh Oh - + - +

Oh Oh Oh

@@ -28,21 +30,21 @@
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/tag/yeah.html b/pelican/tests/output/basic/tag/yeah.html index 49d1616d..976f9b2a 100644 --- a/pelican/tests/output/basic/tag/yeah.html +++ b/pelican/tests/output/basic/tag/yeah.html @@ -1,64 +1,69 @@ - + A Pelican Blog - yeah - + - + - +
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/tags.html b/pelican/tests/output/basic/tags.html index afcd2bab..076e0ea3 100644 --- a/pelican/tests/output/basic/tags.html +++ b/pelican/tests/output/basic/tags.html @@ -1,24 +1,26 @@ - + A Pelican Blog - Tags - + - +
@@ -35,21 +37,21 @@
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/this-is-a-super-article.html b/pelican/tests/output/basic/this-is-a-super-article.html index 5e6f1365..adf98990 100644 --- a/pelican/tests/output/basic/this-is-a-super-article.html +++ b/pelican/tests/output/basic/this-is-a-super-article.html @@ -1,49 +1,54 @@ - + This is a super article ! - + - +
-
- + \ No newline at end of file diff --git a/pelican/tests/output/basic/unbelievable.html b/pelican/tests/output/basic/unbelievable.html index 857b1dc1..d851b87e 100644 --- a/pelican/tests/output/basic/unbelievable.html +++ b/pelican/tests/output/basic/unbelievable.html @@ -1,42 +1,45 @@ - + Unbelievable ! - + - +
-
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/a-markdown-powered-article.html b/pelican/tests/output/custom/a-markdown-powered-article.html index 5c416f2f..13093560 100644 --- a/pelican/tests/output/custom/a-markdown-powered-article.html +++ b/pelican/tests/output/custom/a-markdown-powered-article.html @@ -1,101 +1,105 @@ - + A markdown powered article - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- A markdown powered article

-
+
+
+

+ A markdown powered article +

+
-
+

You're mutually oblivious.

+

You're mutually oblivious.

a root-relative link to unbelievable a file-relative link to unbelievable

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/archives.html b/pelican/tests/output/custom/archives.html index ba2585cc..8cbbd444 100644 --- a/pelican/tests/output/custom/archives.html +++ b/pelican/tests/output/custom/archives.html @@ -1,86 +1,88 @@ - + Alexis' log - + - + -Fork me on GitHub + Fork me on GitHub
-

Archives for Alexis' log

+

Archives for Alexis' log

-
-
Fri 30 November 2012
-
FILENAME_METADATA example
-
Wed 29 February 2012
-
Second article
-
Wed 20 April 2011
-
A markdown powered article
-
Thu 17 February 2011
-
Article 1
-
Thu 17 February 2011
-
Article 2
-
Thu 17 February 2011
-
Article 3
-
Thu 02 December 2010
-
This is a super article !
-
Wed 20 October 2010
-
Oh yeah !
-
Fri 15 October 2010
-
Unbelievable !
-
Sun 14 March 2010
-
The baz tag
-
+
+
Fri 30 November 2012
+
FILENAME_METADATA example
+
Wed 29 February 2012
+
Second article
+
Wed 20 April 2011
+
A markdown powered article
+
Thu 17 February 2011
+
Article 1
+
Thu 17 February 2011
+
Article 2
+
Thu 17 February 2011
+
Article 3
+
Thu 02 December 2010
+
This is a super article !
+
Wed 20 October 2010
+
Oh yeah !
+
Fri 15 October 2010
+
Unbelievable !
+
Sun 14 March 2010
+
The baz tag
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/article-1.html b/pelican/tests/output/custom/article-1.html index 0a837e4a..2f862618 100644 --- a/pelican/tests/output/custom/article-1.html +++ b/pelican/tests/output/custom/article-1.html @@ -1,100 +1,104 @@ - + Article 1 - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- Article 1

-
+
+
+

+ Article 1 +

+
-
+

Article 1

+

Article 1

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/article-2.html b/pelican/tests/output/custom/article-2.html index abe47edc..98b7a176 100644 --- a/pelican/tests/output/custom/article-2.html +++ b/pelican/tests/output/custom/article-2.html @@ -1,100 +1,104 @@ - + Article 2 - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- Article 2

-
+
+
+

+ Article 2 +

+
-
+

Article 2

+

Article 2

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/article-3.html b/pelican/tests/output/custom/article-3.html index 5017aa2f..f4b1d7a6 100644 --- a/pelican/tests/output/custom/article-3.html +++ b/pelican/tests/output/custom/article-3.html @@ -1,100 +1,104 @@ - + Article 3 - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- Article 3

-
+
+
+

+ Article 3 +

+
-
+

Article 3

+

Article 3

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/author/alexis-metaireau.html b/pelican/tests/output/custom/author/alexis-metaireau.html index ea7b44ad..e1182a4b 100644 --- a/pelican/tests/output/custom/author/alexis-metaireau.html +++ b/pelican/tests/output/custom/author/alexis-metaireau.html @@ -1,159 +1,182 @@ - + Alexis' log - Alexis Métaireau - + - + -Fork me on GitHub + Fork me on GitHub - + +
+

Other articles

+
+
    -
  1. + read more +

    There are comments.

    + + + + -
  2. + read more +

    There are comments.

    + + + + -
  3. -
+ read more +

There are comments.

+ + + + + +

Page 1 / 3 »

-
+
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/author/alexis-metaireau2.html b/pelican/tests/output/custom/author/alexis-metaireau2.html index 52570882..5a09ec03 100644 --- a/pelican/tests/output/custom/author/alexis-metaireau2.html +++ b/pelican/tests/output/custom/author/alexis-metaireau2.html @@ -1,173 +1,199 @@ - + Alexis' log - Alexis Métaireau - + - + -Fork me on GitHub + Fork me on GitHub -
-
    -
  1. + read more +

    There are comments.

    + + + + -
  2. + read more +

    There are comments.

    + + + + -
  3. + read more +

    There are comments.

    + + + + -
  4. -
+ read more +

There are comments.

+ + + + + +

« Page 2 / 3 »

-
+ +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/author/alexis-metaireau3.html b/pelican/tests/output/custom/author/alexis-metaireau3.html index 4eed4443..38e073d9 100644 --- a/pelican/tests/output/custom/author/alexis-metaireau3.html +++ b/pelican/tests/output/custom/author/alexis-metaireau3.html @@ -1,50 +1,54 @@ - + Alexis' log - Alexis Métaireau - + - + -Fork me on GitHub + Fork me on GitHub -
-
    -
  1. -
    -

    +
      +
    1. +

    -
    +

    Or completely awesome. Depends the needs.

    +

    Or completely awesome. Depends the needs.

    a root-relative link to markdown-article a file-relative link to markdown-article

    @@ -56,69 +60,79 @@

    Testing another case

    This will now have a line number in 'custom' since it's the default in pelican.conf, it will …

    - read more -

    There are comments.

    -
  2. + read more +

    There are comments.

    + + + + -
  3. -
+ read more +

There are comments.

+ + + + + +

« Page 3 / 3

-
+ +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/authors.html b/pelican/tests/output/custom/authors.html index dad0c239..69416690 100644 --- a/pelican/tests/output/custom/authors.html +++ b/pelican/tests/output/custom/authors.html @@ -1,28 +1,30 @@ - + Alexis' log - Authors - + - + -Fork me on GitHub + Fork me on GitHub
@@ -33,36 +35,36 @@
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/categories.html b/pelican/tests/output/custom/categories.html index 0ab16b05..194e245a 100644 --- a/pelican/tests/output/custom/categories.html +++ b/pelican/tests/output/custom/categories.html @@ -1,67 +1,69 @@ - + Alexis' log - Categories - + - + -Fork me on GitHub + Fork me on GitHub -

Categories on Alexis' log

- +

Categories on Alexis' log

+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/category/bar.html b/pelican/tests/output/custom/category/bar.html index eaddbb76..df4fdf3c 100644 --- a/pelican/tests/output/custom/category/bar.html +++ b/pelican/tests/output/custom/category/bar.html @@ -1,43 +1,47 @@ - + Alexis' log - bar - + - + -Fork me on GitHub + Fork me on GitHub - +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/category/cat1.html b/pelican/tests/output/custom/category/cat1.html index 5ef75144..be2dd003 100644 --- a/pelican/tests/output/custom/category/cat1.html +++ b/pelican/tests/output/custom/category/cat1.html @@ -1,153 +1,175 @@ - + Alexis' log - cat1 - + - + -Fork me on GitHub + Fork me on GitHub - + +
+

Other articles

+
+
    -
  1. + read more +

    There are comments.

    + + + + -
  2. + read more +

    There are comments.

    + + + + -
  3. -
-
+ read more +

There are comments.

+ + + + + + + +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/category/misc.html b/pelican/tests/output/custom/category/misc.html index c0af7513..edc5392e 100644 --- a/pelican/tests/output/custom/category/misc.html +++ b/pelican/tests/output/custom/category/misc.html @@ -1,94 +1,107 @@ - + Alexis' log - misc - + - + -Fork me on GitHub + Fork me on GitHub - + +
+

Other articles

+
+
    -
  1. + read more +

    There are comments.

    + + + + -
  2. -
    -

    +

    -
    +

    Or completely awesome. Depends the needs.

    +

    Or completely awesome. Depends the needs.

    a root-relative link to markdown-article a file-relative link to markdown-article

    @@ -100,65 +113,75 @@

    Testing another case

    This will now have a line number in 'custom' since it's the default in pelican.conf, it will …

    - read more -

    There are comments.

    -
  3. + read more +

    There are comments.

    + + + + -
  4. -
-
+ read more +

There are comments.

+ + + + + + + +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/category/yeah.html b/pelican/tests/output/custom/category/yeah.html index 5c5af7af..52d9159f 100644 --- a/pelican/tests/output/custom/category/yeah.html +++ b/pelican/tests/output/custom/category/yeah.html @@ -1,47 +1,51 @@ - + Alexis' log - yeah - + - + -Fork me on GitHub + Fork me on GitHub - +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/drafts/a-draft-article.html b/pelican/tests/output/custom/drafts/a-draft-article.html index b53e2243..0600686f 100644 --- a/pelican/tests/output/custom/drafts/a-draft-article.html +++ b/pelican/tests/output/custom/drafts/a-draft-article.html @@ -1,86 +1,90 @@ - + A draft article - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- A draft article

-
+
+
+

+ A draft article +

+
-
+

This is a draft article, it should live under the /drafts/ folder and not be +

This is a draft article, it should live under the /drafts/ folder and not be listed anywhere else.

-
+
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/filename_metadata-example.html b/pelican/tests/output/custom/filename_metadata-example.html index dec94688..e59f0e79 100644 --- a/pelican/tests/output/custom/filename_metadata-example.html +++ b/pelican/tests/output/custom/filename_metadata-example.html @@ -1,100 +1,104 @@ - + FILENAME_METADATA example - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- FILENAME_METADATA example

-
+
+
+

+ FILENAME_METADATA example +

+
-
+

Some cool stuff!

+

Some cool stuff!

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/index.html b/pelican/tests/output/custom/index.html index 465d4414..eff20ceb 100644 --- a/pelican/tests/output/custom/index.html +++ b/pelican/tests/output/custom/index.html @@ -1,159 +1,182 @@ - + Alexis' log - + - + -Fork me on GitHub + Fork me on GitHub - + +
+

Other articles

+
+
    -
  1. + read more +

    There are comments.

    + + + + -
  2. + read more +

    There are comments.

    + + + + -
  3. -
+ read more +

There are comments.

+ + + + + +

Page 1 / 3 »

-
+ +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/index2.html b/pelican/tests/output/custom/index2.html index f52583ce..34d921b1 100644 --- a/pelican/tests/output/custom/index2.html +++ b/pelican/tests/output/custom/index2.html @@ -1,173 +1,199 @@ - + Alexis' log - + - + -Fork me on GitHub + Fork me on GitHub -
-
    -
  1. + read more +

    There are comments.

    + + + + -
  2. + read more +

    There are comments.

    + + + + -
  3. + read more +

    There are comments.

    + + + + -
  4. -
+ read more +

There are comments.

+ + + + + +

« Page 2 / 3 »

-
+ +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/index3.html b/pelican/tests/output/custom/index3.html index 7530e0f2..cbfbfdc4 100644 --- a/pelican/tests/output/custom/index3.html +++ b/pelican/tests/output/custom/index3.html @@ -1,50 +1,54 @@ - + Alexis' log - + - + -Fork me on GitHub + Fork me on GitHub -
-
    -
  1. -
    -

    +
      +
    1. +

    -
    +

    Or completely awesome. Depends the needs.

    +

    Or completely awesome. Depends the needs.

    a root-relative link to markdown-article a file-relative link to markdown-article

    @@ -56,69 +60,79 @@

    Testing another case

    This will now have a line number in 'custom' since it's the default in pelican.conf, it will …

    - read more -

    There are comments.

    -
  2. + read more +

    There are comments.

    + + + + -
  3. -
+ read more +

There are comments.

+ + + + + +

« Page 3 / 3

-
+ +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/jinja2_template.html b/pelican/tests/output/custom/jinja2_template.html index 8e7e6836..1cf3cc55 100644 --- a/pelican/tests/output/custom/jinja2_template.html +++ b/pelican/tests/output/custom/jinja2_template.html @@ -1,63 +1,65 @@ - + Alexis' log - + - + -Fork me on GitHub + Fork me on GitHub Some text
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/oh-yeah-fr.html b/pelican/tests/output/custom/oh-yeah-fr.html index 9d1a317d..0e63eb08 100644 --- a/pelican/tests/output/custom/oh-yeah-fr.html +++ b/pelican/tests/output/custom/oh-yeah-fr.html @@ -1,104 +1,108 @@ - + Trop bien ! - + - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- Trop bien !

-
+
+
+

+ Trop bien ! +

+
-
+

Et voila du contenu en français

+

Et voila du contenu en français

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/oh-yeah.html b/pelican/tests/output/custom/oh-yeah.html index 1bdf4791..6b115854 100644 --- a/pelican/tests/output/custom/oh-yeah.html +++ b/pelican/tests/output/custom/oh-yeah.html @@ -1,109 +1,114 @@ - + Oh yeah ! - + - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- Oh yeah !

-
+
+
+

+ Oh yeah ! +

+
-
+
+

Why not ?

After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst ! YEAH !

alternate text
-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/override/index.html b/pelican/tests/output/custom/override/index.html index 543aa8a3..e16a48f7 100644 --- a/pelican/tests/output/custom/override/index.html +++ b/pelican/tests/output/custom/override/index.html @@ -1,28 +1,30 @@ - + Override url/save_as - + - + -Fork me on GitHub + Fork me on GitHub

Override url/save_as

@@ -32,36 +34,36 @@ at a custom location.

- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/pages/this-is-a-test-hidden-page.html b/pelican/tests/output/custom/pages/this-is-a-test-hidden-page.html index 19f5cd2c..a15e7e25 100644 --- a/pelican/tests/output/custom/pages/this-is-a-test-hidden-page.html +++ b/pelican/tests/output/custom/pages/this-is-a-test-hidden-page.html @@ -1,28 +1,30 @@ - + This is a test hidden page - + - + -Fork me on GitHub + Fork me on GitHub

This is a test hidden page

@@ -32,36 +34,36 @@ Anyone can see this page but it's not linked to anywhere!

- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/pages/this-is-a-test-page.html b/pelican/tests/output/custom/pages/this-is-a-test-page.html index 78dc57fc..00f04f5f 100644 --- a/pelican/tests/output/custom/pages/this-is-a-test-page.html +++ b/pelican/tests/output/custom/pages/this-is-a-test-page.html @@ -1,28 +1,30 @@ - + This is a test page - + - + -Fork me on GitHub + Fork me on GitHub

This is a test page

@@ -32,36 +34,36 @@
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/second-article-fr.html b/pelican/tests/output/custom/second-article-fr.html index 16273abd..7d399dd5 100644 --- a/pelican/tests/output/custom/second-article-fr.html +++ b/pelican/tests/output/custom/second-article-fr.html @@ -1,104 +1,109 @@ - + Deuxième article - + - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- Deuxième article

-
+
+
+

+ Deuxième article +

+
-
+

Ceci est un article, en français.

+

Ceci est un article, en français.

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/second-article.html b/pelican/tests/output/custom/second-article.html index 68a814f4..51be1ccc 100644 --- a/pelican/tests/output/custom/second-article.html +++ b/pelican/tests/output/custom/second-article.html @@ -1,104 +1,109 @@ - + Second article - + - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- Second article

-
+
+
+

+ Second article +

+
-
+

This is some article, in english

+

This is some article, in english

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/tag/bar.html b/pelican/tests/output/custom/tag/bar.html index 2723cef9..4b79c5ae 100644 --- a/pelican/tests/output/custom/tag/bar.html +++ b/pelican/tests/output/custom/tag/bar.html @@ -1,143 +1,163 @@ - + Alexis' log - bar - + - + -Fork me on GitHub + Fork me on GitHub - + +
+

Other articles

+
+
    -
  1. + read more +

    There are comments.

    + + + + -
  2. -
-
+ read more +

There are comments.

+ + + + + + + +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/tag/baz.html b/pelican/tests/output/custom/tag/baz.html index 9fc3ee2c..8da9fd60 100644 --- a/pelican/tests/output/custom/tag/baz.html +++ b/pelican/tests/output/custom/tag/baz.html @@ -1,100 +1,104 @@ - + The baz tag - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- The baz tag

-
+
+
+

+ The baz tag +

+
-
+

This article overrides the listening of the articles under the baz tag.

+

This article overrides the listening of the articles under the baz tag.

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/tag/foo.html b/pelican/tests/output/custom/tag/foo.html index 9c117c9e..3ab0b7d3 100644 --- a/pelican/tests/output/custom/tag/foo.html +++ b/pelican/tests/output/custom/tag/foo.html @@ -1,113 +1,127 @@ - + Alexis' log - foo - + - + -Fork me on GitHub + Fork me on GitHub - + +
+

Other articles

+
+
    -
  1. -
-
+ read more +

There are comments.

+ + + + + + + +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/tag/foobar.html b/pelican/tests/output/custom/tag/foobar.html index 97c8bfbb..d2d7e094 100644 --- a/pelican/tests/output/custom/tag/foobar.html +++ b/pelican/tests/output/custom/tag/foobar.html @@ -1,47 +1,51 @@ - + Alexis' log - foobar - + - + -Fork me on GitHub + Fork me on GitHub - +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/tag/oh.html b/pelican/tests/output/custom/tag/oh.html index 0aa17d98..54026ff2 100644 --- a/pelican/tests/output/custom/tag/oh.html +++ b/pelican/tests/output/custom/tag/oh.html @@ -1,28 +1,30 @@ - + Oh Oh Oh - + - + -Fork me on GitHub + Fork me on GitHub

Oh Oh Oh

@@ -31,36 +33,36 @@
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/tag/yeah.html b/pelican/tests/output/custom/tag/yeah.html index d73e6adb..516f4865 100644 --- a/pelican/tests/output/custom/tag/yeah.html +++ b/pelican/tests/output/custom/tag/yeah.html @@ -1,43 +1,47 @@ - + Alexis' log - yeah - + - + -Fork me on GitHub + Fork me on GitHub - +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/tags.html b/pelican/tests/output/custom/tags.html index e8d8e6de..d47a7ab0 100644 --- a/pelican/tests/output/custom/tags.html +++ b/pelican/tests/output/custom/tags.html @@ -1,28 +1,30 @@ - + Alexis' log - Tags - + - + -Fork me on GitHub + Fork me on GitHub
@@ -38,36 +40,36 @@
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/this-is-a-super-article.html b/pelican/tests/output/custom/this-is-a-super-article.html index e38291e6..90e411ba 100644 --- a/pelican/tests/output/custom/this-is-a-super-article.html +++ b/pelican/tests/output/custom/this-is-a-super-article.html @@ -1,53 +1,58 @@ - + This is a super article ! - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- This is a super article !

-
+
+
+

+ This is a super article ! +

+
-
+

Some content here !

+ +

Some content here !

This is a simple title

And here comes the cool stuff.

@@ -60,56 +65,56 @@

→ And now try with some utf8 hell: ééé

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom/unbelievable.html b/pelican/tests/output/custom/unbelievable.html index b85f9e1f..3fe19ab5 100644 --- a/pelican/tests/output/custom/unbelievable.html +++ b/pelican/tests/output/custom/unbelievable.html @@ -1,49 +1,53 @@ - + Unbelievable ! - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- Unbelievable !

-
+
+
+

+ Unbelievable ! +

+
-
+

Or completely awesome. Depends the needs.

+

Or completely awesome. Depends the needs.

a root-relative link to markdown-article a file-relative link to markdown-article

@@ -77,56 +81,56 @@ pelican.conf, it will have nothing in default.

Lovely.

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/archives.html b/pelican/tests/output/custom_locale/archives.html index 46450fa2..50759f1c 100644 --- a/pelican/tests/output/custom_locale/archives.html +++ b/pelican/tests/output/custom_locale/archives.html @@ -1,86 +1,88 @@ - + Alexis' log - + - + -Fork me on GitHub + Fork me on GitHub
-

Archives for Alexis' log

+

Archives for Alexis' log

-
-
30 novembre 2012
-
FILENAME_METADATA example
-
29 février 2012
-
Second article
-
20 avril 2011
-
A markdown powered article
-
17 février 2011
-
Article 1
-
17 février 2011
-
Article 2
-
17 février 2011
-
Article 3
-
02 décembre 2010
-
This is a super article !
-
20 octobre 2010
-
Oh yeah !
-
15 octobre 2010
-
Unbelievable !
-
14 mars 2010
-
The baz tag
-
+
+
30 novembre 2012
+
FILENAME_METADATA example
+
29 février 2012
+
Second article
+
20 avril 2011
+
A markdown powered article
+
17 février 2011
+
Article 1
+
17 février 2011
+
Article 2
+
17 février 2011
+
Article 3
+
02 décembre 2010
+
This is a super article !
+
20 octobre 2010
+
Oh yeah !
+
15 octobre 2010
+
Unbelievable !
+
14 mars 2010
+
The baz tag
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/author/alexis-metaireau.html b/pelican/tests/output/custom_locale/author/alexis-metaireau.html index c21a11ee..52b64d19 100644 --- a/pelican/tests/output/custom_locale/author/alexis-metaireau.html +++ b/pelican/tests/output/custom_locale/author/alexis-metaireau.html @@ -1,159 +1,182 @@ - + Alexis' log - Alexis Métaireau - + - + -Fork me on GitHub + Fork me on GitHub - + +
+

Other articles

+
+
    -
  1. + read more +

    There are comments.

    + + + + -
  2. + read more +

    There are comments.

    + + + + -
  3. -
+ read more +

There are comments.

+ + + + + +

Page 1 / 3 »

-
+ +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/author/alexis-metaireau2.html b/pelican/tests/output/custom_locale/author/alexis-metaireau2.html index 5ec65bac..5428f4e6 100644 --- a/pelican/tests/output/custom_locale/author/alexis-metaireau2.html +++ b/pelican/tests/output/custom_locale/author/alexis-metaireau2.html @@ -1,173 +1,199 @@ - + Alexis' log - Alexis Métaireau - + - + -Fork me on GitHub + Fork me on GitHub -
-
    -
  1. + read more +

    There are comments.

    + + + + -
  2. + read more +

    There are comments.

    + + + + -
  3. + read more +

    There are comments.

    + + + + -
  4. -
+ read more +

There are comments.

+ + + + + +

« Page 2 / 3 »

-
+ +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/author/alexis-metaireau3.html b/pelican/tests/output/custom_locale/author/alexis-metaireau3.html index e495b4c8..8f7f0b05 100644 --- a/pelican/tests/output/custom_locale/author/alexis-metaireau3.html +++ b/pelican/tests/output/custom_locale/author/alexis-metaireau3.html @@ -1,50 +1,54 @@ - + Alexis' log - Alexis Métaireau - + - + -Fork me on GitHub + Fork me on GitHub -
-
    -
  1. -
    -

    +
      +
    1. +

    -
    +

    Or completely awesome. Depends the needs.

    +

    Or completely awesome. Depends the needs.

    a root-relative link to markdown-article a file-relative link to markdown-article

    @@ -56,69 +60,79 @@

    Testing another case

    This will now have a line number in 'custom' since it's the default in pelican.conf, it will …

    - read more -

    There are comments.

    -
  2. + read more +

    There are comments.

    + + + + -
  3. -
+ read more +

There are comments.

+ + + + + +

« Page 3 / 3

-
+ +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/authors.html b/pelican/tests/output/custom_locale/authors.html index 0baa4e2a..1cf3f002 100644 --- a/pelican/tests/output/custom_locale/authors.html +++ b/pelican/tests/output/custom_locale/authors.html @@ -1,28 +1,30 @@ - + Alexis' log - Authors - + - + -Fork me on GitHub + Fork me on GitHub
@@ -33,36 +35,36 @@
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/categories.html b/pelican/tests/output/custom_locale/categories.html index a9ca139a..a9995d3f 100644 --- a/pelican/tests/output/custom_locale/categories.html +++ b/pelican/tests/output/custom_locale/categories.html @@ -1,67 +1,69 @@ - + Alexis' log - Categories - + - + -Fork me on GitHub + Fork me on GitHub -

Categories on Alexis' log

- +

Categories on Alexis' log

+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/category/bar.html b/pelican/tests/output/custom_locale/category/bar.html index d2cc2214..2592389d 100644 --- a/pelican/tests/output/custom_locale/category/bar.html +++ b/pelican/tests/output/custom_locale/category/bar.html @@ -1,43 +1,47 @@ - + Alexis' log - bar - + - + -Fork me on GitHub + Fork me on GitHub - +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/category/cat1.html b/pelican/tests/output/custom_locale/category/cat1.html index aec43346..64236bb9 100644 --- a/pelican/tests/output/custom_locale/category/cat1.html +++ b/pelican/tests/output/custom_locale/category/cat1.html @@ -1,153 +1,175 @@ - + Alexis' log - cat1 - + - + -Fork me on GitHub + Fork me on GitHub - + +
+

Other articles

+
+
    -
  1. + read more +

    There are comments.

    + + + + -
  2. + read more +

    There are comments.

    + + + + -
  3. -
-
+ read more +

There are comments.

+ + + + + + + +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/category/misc.html b/pelican/tests/output/custom_locale/category/misc.html index 4e31e817..26b81d75 100644 --- a/pelican/tests/output/custom_locale/category/misc.html +++ b/pelican/tests/output/custom_locale/category/misc.html @@ -1,94 +1,107 @@ - + Alexis' log - misc - + - + -Fork me on GitHub + Fork me on GitHub - + +
+

Other articles

+
+
    -
  1. + read more +

    There are comments.

    + + + + -
  2. -
    -

    +

    -
    +

    Or completely awesome. Depends the needs.

    +

    Or completely awesome. Depends the needs.

    a root-relative link to markdown-article a file-relative link to markdown-article

    @@ -100,65 +113,75 @@

    Testing another case

    This will now have a line number in 'custom' since it's the default in pelican.conf, it will …

    - read more -

    There are comments.

    -
  3. + read more +

    There are comments.

    + + + + -
  4. -
-
+ read more +

There are comments.

+ + + + + + + +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/category/yeah.html b/pelican/tests/output/custom_locale/category/yeah.html index 76dd1936..d0f7ea71 100644 --- a/pelican/tests/output/custom_locale/category/yeah.html +++ b/pelican/tests/output/custom_locale/category/yeah.html @@ -1,47 +1,51 @@ - + Alexis' log - yeah - + - + -Fork me on GitHub + Fork me on GitHub - +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/drafts/a-draft-article.html b/pelican/tests/output/custom_locale/drafts/a-draft-article.html index 97d54561..a14dc03d 100644 --- a/pelican/tests/output/custom_locale/drafts/a-draft-article.html +++ b/pelican/tests/output/custom_locale/drafts/a-draft-article.html @@ -1,86 +1,90 @@ - + A draft article - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- A draft article

-
+
+
+

+ A draft article +

+
-
+

This is a draft article, it should live under the /drafts/ folder and not be +

This is a draft article, it should live under the /drafts/ folder and not be listed anywhere else.

-
+
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/index.html b/pelican/tests/output/custom_locale/index.html index b56a6b8c..88e2f404 100644 --- a/pelican/tests/output/custom_locale/index.html +++ b/pelican/tests/output/custom_locale/index.html @@ -1,159 +1,182 @@ - + Alexis' log - + - + -Fork me on GitHub + Fork me on GitHub - + +
+

Other articles

+
+
    -
  1. + read more +

    There are comments.

    + + + + -
  2. + read more +

    There are comments.

    + + + + -
  3. -
+ read more +

There are comments.

+ + + + + +

Page 1 / 3 »

-
+ +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/index2.html b/pelican/tests/output/custom_locale/index2.html index 0fde251d..d4adcaa7 100644 --- a/pelican/tests/output/custom_locale/index2.html +++ b/pelican/tests/output/custom_locale/index2.html @@ -1,173 +1,199 @@ - + Alexis' log - + - + -Fork me on GitHub + Fork me on GitHub -
-
    -
  1. + read more +

    There are comments.

    + + + + -
  2. + read more +

    There are comments.

    + + + + -
  3. + read more +

    There are comments.

    + + + + -
  4. -
+ read more +

There are comments.

+ + + + + +

« Page 2 / 3 »

-
+ +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/index3.html b/pelican/tests/output/custom_locale/index3.html index 62dea214..5828d8cf 100644 --- a/pelican/tests/output/custom_locale/index3.html +++ b/pelican/tests/output/custom_locale/index3.html @@ -1,50 +1,54 @@ - + Alexis' log - + - + -Fork me on GitHub + Fork me on GitHub -
-
    -
  1. -
    -

    +
      +
    1. +

    -
    +

    Or completely awesome. Depends the needs.

    +

    Or completely awesome. Depends the needs.

    a root-relative link to markdown-article a file-relative link to markdown-article

    @@ -56,69 +60,79 @@

    Testing another case

    This will now have a line number in 'custom' since it's the default in pelican.conf, it will …

    - read more -

    There are comments.

    -
  2. + read more +

    There are comments.

    + + + + -
  3. -
+ read more +

There are comments.

+ + + + + +

« Page 3 / 3

-
+ +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/jinja2_template.html b/pelican/tests/output/custom_locale/jinja2_template.html index 2d1032e1..1a9f6aa1 100644 --- a/pelican/tests/output/custom_locale/jinja2_template.html +++ b/pelican/tests/output/custom_locale/jinja2_template.html @@ -1,63 +1,65 @@ - + Alexis' log - + - + -Fork me on GitHub + Fork me on GitHub Some text
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/oh-yeah-fr.html b/pelican/tests/output/custom_locale/oh-yeah-fr.html index 1ecd77b6..1c02bbe5 100644 --- a/pelican/tests/output/custom_locale/oh-yeah-fr.html +++ b/pelican/tests/output/custom_locale/oh-yeah-fr.html @@ -1,104 +1,108 @@ - + Trop bien ! - + - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- Trop bien !

-
+
+
+

+ Trop bien ! +

+
-
+

Et voila du contenu en français

+

Et voila du contenu en français

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/override/index.html b/pelican/tests/output/custom_locale/override/index.html index 74bb4abe..63e87991 100644 --- a/pelican/tests/output/custom_locale/override/index.html +++ b/pelican/tests/output/custom_locale/override/index.html @@ -1,28 +1,30 @@ - + Override url/save_as - + - + -Fork me on GitHub + Fork me on GitHub

Override url/save_as

@@ -32,36 +34,36 @@ at a custom location.

- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/pages/this-is-a-test-hidden-page.html b/pelican/tests/output/custom_locale/pages/this-is-a-test-hidden-page.html index 9af27061..25cad159 100644 --- a/pelican/tests/output/custom_locale/pages/this-is-a-test-hidden-page.html +++ b/pelican/tests/output/custom_locale/pages/this-is-a-test-hidden-page.html @@ -1,28 +1,30 @@ - + This is a test hidden page - + - + -Fork me on GitHub + Fork me on GitHub

This is a test hidden page

@@ -32,36 +34,36 @@ Anyone can see this page but it's not linked to anywhere!

- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/pages/this-is-a-test-page.html b/pelican/tests/output/custom_locale/pages/this-is-a-test-page.html index 96f51396..1f3a50ff 100644 --- a/pelican/tests/output/custom_locale/pages/this-is-a-test-page.html +++ b/pelican/tests/output/custom_locale/pages/this-is-a-test-page.html @@ -1,28 +1,30 @@ - + This is a test page - + - + -Fork me on GitHub + Fork me on GitHub

This is a test page

@@ -32,36 +34,36 @@
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/posts/2010/décembre/02/this-is-a-super-article/index.html b/pelican/tests/output/custom_locale/posts/2010/décembre/02/this-is-a-super-article/index.html index b7cdd47c..d3036293 100644 --- a/pelican/tests/output/custom_locale/posts/2010/décembre/02/this-is-a-super-article/index.html +++ b/pelican/tests/output/custom_locale/posts/2010/décembre/02/this-is-a-super-article/index.html @@ -1,53 +1,58 @@ - + This is a super article ! - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- This is a super article !

-
+
+
+

+ This is a super article ! +

+
-
+

Some content here !

+ +

Some content here !

This is a simple title

And here comes the cool stuff.

@@ -60,56 +65,56 @@

→ And now try with some utf8 hell: ééé

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/posts/2010/octobre/15/unbelievable/index.html b/pelican/tests/output/custom_locale/posts/2010/octobre/15/unbelievable/index.html index 13f79258..fa321e1f 100644 --- a/pelican/tests/output/custom_locale/posts/2010/octobre/15/unbelievable/index.html +++ b/pelican/tests/output/custom_locale/posts/2010/octobre/15/unbelievable/index.html @@ -1,49 +1,53 @@ - + Unbelievable ! - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- Unbelievable !

-
+
+
+

+ Unbelievable ! +

+
-
+

Or completely awesome. Depends the needs.

+

Or completely awesome. Depends the needs.

a root-relative link to markdown-article a file-relative link to markdown-article

@@ -77,56 +81,56 @@ pelican.conf, it will have nothing in default.

Lovely.

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/posts/2010/octobre/20/oh-yeah/index.html b/pelican/tests/output/custom_locale/posts/2010/octobre/20/oh-yeah/index.html index 91acf1a8..2b606a3d 100644 --- a/pelican/tests/output/custom_locale/posts/2010/octobre/20/oh-yeah/index.html +++ b/pelican/tests/output/custom_locale/posts/2010/octobre/20/oh-yeah/index.html @@ -1,109 +1,114 @@ - + Oh yeah ! - + - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- Oh yeah !

-
+
+
+

+ Oh yeah ! +

+
-
+
+

Why not ?

After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst ! YEAH !

alternate text
-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/posts/2011/avril/20/a-markdown-powered-article/index.html b/pelican/tests/output/custom_locale/posts/2011/avril/20/a-markdown-powered-article/index.html index 92449abd..45da639c 100644 --- a/pelican/tests/output/custom_locale/posts/2011/avril/20/a-markdown-powered-article/index.html +++ b/pelican/tests/output/custom_locale/posts/2011/avril/20/a-markdown-powered-article/index.html @@ -1,101 +1,105 @@ - + A markdown powered article - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- A markdown powered article

-
+
+
+

+ A markdown powered article +

+
-
+

You're mutually oblivious.

+

You're mutually oblivious.

a root-relative link to unbelievable a file-relative link to unbelievable

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/posts/2011/février/17/article-1/index.html b/pelican/tests/output/custom_locale/posts/2011/février/17/article-1/index.html index 16532ac0..65203019 100644 --- a/pelican/tests/output/custom_locale/posts/2011/février/17/article-1/index.html +++ b/pelican/tests/output/custom_locale/posts/2011/février/17/article-1/index.html @@ -1,100 +1,104 @@ - + Article 1 - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- Article 1

-
+
+
+

+ Article 1 +

+
-
+

Article 1

+

Article 1

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/posts/2011/février/17/article-2/index.html b/pelican/tests/output/custom_locale/posts/2011/février/17/article-2/index.html index 46445d8a..574ab01f 100644 --- a/pelican/tests/output/custom_locale/posts/2011/février/17/article-2/index.html +++ b/pelican/tests/output/custom_locale/posts/2011/février/17/article-2/index.html @@ -1,100 +1,104 @@ - + Article 2 - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- Article 2

-
+
+
+

+ Article 2 +

+
-
+

Article 2

+

Article 2

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/posts/2011/février/17/article-3/index.html b/pelican/tests/output/custom_locale/posts/2011/février/17/article-3/index.html index e87bcbd1..31d15541 100644 --- a/pelican/tests/output/custom_locale/posts/2011/février/17/article-3/index.html +++ b/pelican/tests/output/custom_locale/posts/2011/février/17/article-3/index.html @@ -1,100 +1,104 @@ - + Article 3 - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- Article 3

-
+
+
+

+ Article 3 +

+
-
+

Article 3

+

Article 3

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/posts/2012/février/29/second-article/index.html b/pelican/tests/output/custom_locale/posts/2012/février/29/second-article/index.html index c5790ae2..dd05dd92 100644 --- a/pelican/tests/output/custom_locale/posts/2012/février/29/second-article/index.html +++ b/pelican/tests/output/custom_locale/posts/2012/février/29/second-article/index.html @@ -1,104 +1,109 @@ - + Second article - + - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- Second article

-
+
+
+

+ Second article +

+
-
+

This is some article, in english

+

This is some article, in english

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/posts/2012/novembre/30/filename_metadata-example/index.html b/pelican/tests/output/custom_locale/posts/2012/novembre/30/filename_metadata-example/index.html index c97160d4..d2ca7712 100644 --- a/pelican/tests/output/custom_locale/posts/2012/novembre/30/filename_metadata-example/index.html +++ b/pelican/tests/output/custom_locale/posts/2012/novembre/30/filename_metadata-example/index.html @@ -1,100 +1,104 @@ - + FILENAME_METADATA example - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- FILENAME_METADATA example

-
+
+
+

+ FILENAME_METADATA example +

+
-
+

Some cool stuff!

+

Some cool stuff!

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/second-article-fr.html b/pelican/tests/output/custom_locale/second-article-fr.html index 33e10b19..bafe45be 100644 --- a/pelican/tests/output/custom_locale/second-article-fr.html +++ b/pelican/tests/output/custom_locale/second-article-fr.html @@ -1,104 +1,109 @@ - + Deuxième article - + - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- Deuxième article

-
+
+
+

+ Deuxième article +

+
-
+

Ceci est un article, en français.

+

Ceci est un article, en français.

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/tag/bar.html b/pelican/tests/output/custom_locale/tag/bar.html index 0d49090f..b38a322e 100644 --- a/pelican/tests/output/custom_locale/tag/bar.html +++ b/pelican/tests/output/custom_locale/tag/bar.html @@ -1,143 +1,163 @@ - + Alexis' log - bar - + - + -Fork me on GitHub + Fork me on GitHub - + +
+

Other articles

+
+
    -
  1. + read more +

    There are comments.

    + + + + -
  2. -
-
+ read more +

There are comments.

+ + + + + + + +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/tag/baz.html b/pelican/tests/output/custom_locale/tag/baz.html index 53b8156d..d4ebaaaa 100644 --- a/pelican/tests/output/custom_locale/tag/baz.html +++ b/pelican/tests/output/custom_locale/tag/baz.html @@ -1,100 +1,104 @@ - + The baz tag - + - + -Fork me on GitHub + Fork me on GitHub
-
-
-

- The baz tag

-
+
+
+

+ The baz tag +

+
-
+

This article overrides the listening of the articles under the baz tag.

+

This article overrides the listening of the articles under the baz tag.

-
-
-

Comments !

-
- - -
+
+
+

Comments!

+
+ + +
-
+
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/tag/foo.html b/pelican/tests/output/custom_locale/tag/foo.html index f85ae34d..f0c70890 100644 --- a/pelican/tests/output/custom_locale/tag/foo.html +++ b/pelican/tests/output/custom_locale/tag/foo.html @@ -1,113 +1,127 @@ - + Alexis' log - foo - + - + -Fork me on GitHub + Fork me on GitHub - + +
+

Other articles

+
+
    -
  1. -
-
+ read more +

There are comments.

+ + + + + + + +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/tag/foobar.html b/pelican/tests/output/custom_locale/tag/foobar.html index 8ca76c78..e88a58c1 100644 --- a/pelican/tests/output/custom_locale/tag/foobar.html +++ b/pelican/tests/output/custom_locale/tag/foobar.html @@ -1,47 +1,51 @@ - + Alexis' log - foobar - + - + -Fork me on GitHub + Fork me on GitHub - +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/tag/oh.html b/pelican/tests/output/custom_locale/tag/oh.html index a41e43f7..cfef17bd 100644 --- a/pelican/tests/output/custom_locale/tag/oh.html +++ b/pelican/tests/output/custom_locale/tag/oh.html @@ -1,28 +1,30 @@ - + Oh Oh Oh - + - + -Fork me on GitHub + Fork me on GitHub

Oh Oh Oh

@@ -31,36 +33,36 @@
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/tag/yeah.html b/pelican/tests/output/custom_locale/tag/yeah.html index fb0f2eb1..b99b5613 100644 --- a/pelican/tests/output/custom_locale/tag/yeah.html +++ b/pelican/tests/output/custom_locale/tag/yeah.html @@ -1,43 +1,47 @@ - + Alexis' log - yeah - + - + -Fork me on GitHub + Fork me on GitHub - +
- +
- + \ No newline at end of file diff --git a/pelican/tests/output/custom_locale/tags.html b/pelican/tests/output/custom_locale/tags.html index 92f6615c..5a09c368 100644 --- a/pelican/tests/output/custom_locale/tags.html +++ b/pelican/tests/output/custom_locale/tags.html @@ -1,28 +1,30 @@ - + Alexis' log - Tags - + - + -Fork me on GitHub + Fork me on GitHub
@@ -38,36 +40,36 @@
- +
- + \ No newline at end of file diff --git a/pelican/themes/notmyidea/templates/analytics.html b/pelican/themes/notmyidea/templates/analytics.html index a966c4c2..a38a7c12 100644 --- a/pelican/themes/notmyidea/templates/analytics.html +++ b/pelican/themes/notmyidea/templates/analytics.html @@ -1,45 +1,44 @@ {% if GOOGLE_ANALYTICS %} {% endif %} {% if GAUGES %} {% endif %} {% if PIWIK_URL and PIWIK_SITE_ID %} {% endif %} diff --git a/pelican/themes/notmyidea/templates/archives.html b/pelican/themes/notmyidea/templates/archives.html index f6784942..2265bbc9 100644 --- a/pelican/themes/notmyidea/templates/archives.html +++ b/pelican/themes/notmyidea/templates/archives.html @@ -1,13 +1,13 @@ {% extends "base.html" %} {% block content %}
-

Archives for {{ SITENAME }}

+

Archives for {{ SITENAME }}

-
-{% for article in dates %} -
{{ article.locale_date }}
-
{{ article.title }}
-{% endfor %} -
+
+ {% for article in dates %} +
{{ article.locale_date }}
+
{{ article.title }}
+ {% endfor %} +
{% endblock %} diff --git a/pelican/themes/notmyidea/templates/article.html b/pelican/themes/notmyidea/templates/article.html index 98c91bbc..2be51fbf 100644 --- a/pelican/themes/notmyidea/templates/article.html +++ b/pelican/themes/notmyidea/templates/article.html @@ -5,42 +5,43 @@ {% block extra_head %} {% import 'translations.html' as translations with context %} {% if translations.entry_hreflang(article) %} - {{ translations.entry_hreflang(article) }} + {{ translations.entry_hreflang(article) }} {% endif %} {% endblock %} {% block content %}
-
-
-

- {{ article.title }}

- {% include 'twitter.html' %} -
+
+
+

+ {{ article.title }} +

+ {% include 'twitter.html' %} +
-
- {% include 'article_infos.html' %} - {{ article.content }} -
- {% if DISQUS_SITENAME and SITEURL and article.status != "draft" %} -
-

Comments !

-
- - -
- {% endif %} +
+ {% include 'article_infos.html' %} + {{ article.content }} +
+ {% if DISQUS_SITENAME and SITEURL and article.status != "draft" %} +
+

Comments!

+
+ + +
+ {% endif %} -
+
{% endblock %} diff --git a/pelican/themes/notmyidea/templates/article_infos.html b/pelican/themes/notmyidea/templates/article_infos.html index 172ad85d..74860ab8 100644 --- a/pelican/themes/notmyidea/templates/article_infos.html +++ b/pelican/themes/notmyidea/templates/article_infos.html @@ -1,23 +1,24 @@
- - Published: {{ article.locale_date }} - - {% if article.modified %} -
- - Updated: {{ article.locale_modified }} - - {% endif %} + + Published: {{ article.locale_date }} + + {% if article.modified %} +
+ + Updated: {{ article.locale_modified }} + + {% endif %} - {% if article.authors %} + {% if article.authors %}
- By {% for author in article.authors %} - {{ author }} - {% endfor %} + By + {% for author in article.authors %} + {{ author }} + {% endfor %}
- {% endif %} -

In {{ article.category }}.

-{% include 'taglist.html' %} -{% import 'translations.html' as translations with context %} -{{ translations.translations_for(article) }} + {% endif %} +

In {{ article.category }}.

+ {% include 'taglist.html' %} + {% import 'translations.html' as translations with context %} + {{- translations.translations_for(article) }}
diff --git a/pelican/themes/notmyidea/templates/base.html b/pelican/themes/notmyidea/templates/base.html index 2de43b46..58ed30ed 100644 --- a/pelican/themes/notmyidea/templates/base.html +++ b/pelican/themes/notmyidea/templates/base.html @@ -1,6 +1,6 @@ - + {% block title %}{{ SITENAME }}{%endblock%} @@ -11,69 +11,71 @@ {% endif %} {% block extra_head %}{% endblock extra_head %} - + - -{% include 'github.html' %} + + {% include 'github.html' %} {% block content %} {% endblock %}
- {% if LINKS %} -
-

{{ LINKS_WIDGET_NAME | default('links') }}

-
    - {% for name, link in LINKS %} -
  • {{ name }}
  • - {% endfor %} -
-
- {% endif %} - {% if SOCIAL or FEED_ALL_ATOM or FEED_ALL_RSS %} + {% if LINKS %} +
+

{{ LINKS_WIDGET_NAME | default('links') }}

+
    + {% for name, link in LINKS %} +
  • {{ name }}
  • + {% endfor %} +
+
+ {% endif %} + {% if SOCIAL or FEED_ALL_ATOM or FEED_ALL_RSS %} - {% endif %} + {% endif %}
-{% include 'analytics.html' %} -{% include 'disqus_script.html' %} - + {% include 'analytics.html' %} + {% include 'disqus_script.html' %} + diff --git a/pelican/themes/notmyidea/templates/comments.html b/pelican/themes/notmyidea/templates/comments.html index bb033c0f..6f2dd7fa 100644 --- a/pelican/themes/notmyidea/templates/comments.html +++ b/pelican/themes/notmyidea/templates/comments.html @@ -1 +1,3 @@ -{% if DISQUS_SITENAME %}

There are comments.

{% endif %} +{% if DISQUS_SITENAME %} +

There are comments.

+{% endif %} diff --git a/pelican/themes/notmyidea/templates/github.html b/pelican/themes/notmyidea/templates/github.html index ccc401fe..7e418947 100644 --- a/pelican/themes/notmyidea/templates/github.html +++ b/pelican/themes/notmyidea/templates/github.html @@ -1,9 +1,9 @@ {% if GITHUB_URL %} -{% if GITHUB_POSITION != "left" %} -Fork me on GitHub -{% else %} -Fork me on GitHub -{% endif %} + {% if GITHUB_POSITION != "left" %} + Fork me on GitHub + {% else %} + Fork me on GitHub + {% endif %} {% endif %} diff --git a/pelican/themes/notmyidea/templates/index.html b/pelican/themes/notmyidea/templates/index.html index 20ca7eee..77c6ed94 100644 --- a/pelican/themes/notmyidea/templates/index.html +++ b/pelican/themes/notmyidea/templates/index.html @@ -1,59 +1,67 @@ +{# NOTE: To better show the structure of the output HTML, this template is +indented ignoring Jinja blocks. #} {% extends "base.html" %} {% block content_title %}{% endblock %} {% block content %} {% if articles %} - {% for article in articles_page.object_list %} +{% for article in articles_page.object_list %} - {# First item #} - {% if loop.first and not articles_page.has_previous() %} - - {% if loop.length > 1 %} -
-

Other articles

-
-
    - {% endif %} +{# First item #} +{% if loop.first and not articles_page.has_previous() %} + + +{% if loop.length > 1 %} +
    +

    Other articles

    +
    +
      + {% endif %} {# other items #} {% else %} - {% if loop.first %} -
      -
        - {% endif %} -
      1. -
        -

        {{ article.title }}

        -
        - -
        - {% include 'article_infos.html' %} - {{ article.summary }} - read more - {% include 'comments.html' %} -
        -
      2. - {% endif %} - {% if loop.last %} - {% if loop.length > 1 or articles_page.has_other_pages() %} -
      - {% if articles_page.has_other_pages() %} - {% include 'pagination.html' %} + {% if loop.first %} +
      +
        {% endif %} -
      +
    1. +
      +
      +

      {{ article.title }}

      +
      + +
      + {% include 'article_infos.html' %} + {{ article.summary }} + read more + {% include 'comments.html' %} +
      + +
      +
    2. + {% endif %} + {% if loop.last %} + {% if loop.length > 1 or articles_page.has_other_pages() %} +
    + + {% if articles_page.has_other_pages() %} + {% include 'pagination.html' %} {% endif %} +
    + + {% endif %} + {% endif %} + {% endfor %} + {% else %} +
    +

    Pages

    + {% for page in pages %} +
  1. {{ page.title }}
  2. + {% endfor %} +
    {% endif %} - {% endfor %} -{% else %} -
    -

    Pages

    - {% for page in pages %} -
  3. {{ page.title }}
  4. - {% endfor %} -
    -{% endif %} {% endblock content %} diff --git a/pelican/themes/notmyidea/templates/page.html b/pelican/themes/notmyidea/templates/page.html index 7e50c1f6..f72781f9 100644 --- a/pelican/themes/notmyidea/templates/page.html +++ b/pelican/themes/notmyidea/templates/page.html @@ -5,7 +5,7 @@ {% block extra_head %} {% import 'translations.html' as translations with context %} {% if translations.entry_hreflang(page) %} - {{ translations.entry_hreflang(page) }} + {{ translations.entry_hreflang(page) }} {% endif %} {% endblock %} diff --git a/pelican/themes/notmyidea/templates/period_archives.html b/pelican/themes/notmyidea/templates/period_archives.html index 252e002f..8caa9c14 100644 --- a/pelican/themes/notmyidea/templates/period_archives.html +++ b/pelican/themes/notmyidea/templates/period_archives.html @@ -1,13 +1,13 @@ {% extends "base.html" %} {% block content %}
    -

    Archives for {{ period | reverse | join(' ') }}

    +

    Archives for {{ period | reverse | join(' ') }}

    -
    -{% for article in dates %} -
    {{ article.locale_date }}
    -
    {{ article.title }}
    -{% endfor %} -
    +
    + {% for article in dates %} +
    {{ article.locale_date }}
    +
    {{ article.title }}
    + {% endfor %} +
    {% endblock %} diff --git a/pelican/themes/notmyidea/templates/taglist.html b/pelican/themes/notmyidea/templates/taglist.html index 58f35576..06d7aff3 100644 --- a/pelican/themes/notmyidea/templates/taglist.html +++ b/pelican/themes/notmyidea/templates/taglist.html @@ -1 +1,3 @@ -{% if article.tags %}

    tags: {% for tag in article.tags %}{{ tag | escape }} {% endfor %}

    {% endif %} +{% if article.tags %} +

    tags: {% for tag in article.tags %}{{ tag | escape }} {% endfor %}

    +{% endif %} diff --git a/pelican/themes/notmyidea/templates/translations.html b/pelican/themes/notmyidea/templates/translations.html index 1eec7c43..c6dc99cd 100644 --- a/pelican/themes/notmyidea/templates/translations.html +++ b/pelican/themes/notmyidea/templates/translations.html @@ -1,6 +1,6 @@ {% macro translations_for(article) %} {% if article.translations %} -Translations: + Translations: {% for translation in article.translations %} {{ translation.lang }} {% endfor %} @@ -9,8 +9,8 @@ Translations: {% macro entry_hreflang(entry) %} {% if entry.translations %} - {% for translation in entry.translations %} - - {% endfor %} + {% for translation in entry.translations %} + + {% endfor %} {% endif %} {% endmacro %} diff --git a/pelican/themes/simple/templates/article.html b/pelican/themes/simple/templates/article.html index 5a1c093d..3bcbdb40 100644 --- a/pelican/themes/simple/templates/article.html +++ b/pelican/themes/simple/templates/article.html @@ -4,64 +4,65 @@ {% block title %}{{ SITENAME }} - {{ article.title }}{% endblock %} {% block head %} - {{ super() }} +{{ super() }} - {% import 'translations.html' as translations with context %} - {% if translations.entry_hreflang(article) %} +{% import 'translations.html' as translations with context %} +{% if translations.entry_hreflang(article) %} {{ translations.entry_hreflang(article) }} - {% endif %} +{% endif %} - {% if article.description %} +{% if article.description %} - {% endif %} +{% endif %} - {% for tag in article.tags %} +{% for tag in article.tags %} - {% endfor %} +{% endfor %} {% endblock %} {% block content %}
    -
    -

    - {{ article.title }}

    - {% import 'translations.html' as translations with context %} - {{ translations.translations_for(article) }} -
    -
    - - {% if article.modified %} - - {% endif %} - {% if article.authors %} -
    - By {% for author in article.authors %} - {{ author }} - {% endfor %} -
    - {% endif %} - {% if article.category %} -
    - Category: {{ article.category }} -
    - {% endif %} - {% if article.tags %} -
    - Tags: - {% for tag in article.tags %} - {{ tag }} - {% endfor %} -
    - {% endif %} -
    -
    - {{ article.content }} -
    +
    +

    + {{ article.title }} +

    + {% import 'translations.html' as translations with context %} + {{ translations.translations_for(article) }} +
    +
    + + {% if article.modified %} + + {% endif %} + {% if article.authors %} +
    + By {% for author in article.authors %} + {{ author }} + {% endfor %} +
    + {% endif %} + {% if article.category %} +
    + Category: {{ article.category }} +
    + {% endif %} + {% if article.tags %} +
    + Tags: + {% for tag in article.tags %} + {{ tag }} + {% endfor %} +
    + {% endif %} +
    +
    + {{ article.content }} +
    {% endblock %} diff --git a/pelican/themes/simple/templates/author.html b/pelican/themes/simple/templates/author.html index a1901946..51a7f1e1 100644 --- a/pelican/themes/simple/templates/author.html +++ b/pelican/themes/simple/templates/author.html @@ -5,4 +5,3 @@ {% block content_title %}

    Articles by {{ author }}

    {% endblock %} - diff --git a/pelican/themes/simple/templates/authors.html b/pelican/themes/simple/templates/authors.html index 9aee5db4..d27e6c7f 100644 --- a/pelican/themes/simple/templates/authors.html +++ b/pelican/themes/simple/templates/authors.html @@ -3,10 +3,10 @@ {% block title %}{{ SITENAME }} - Authors{% endblock %} {% block content %} -

    Authors on {{ SITENAME }}

    -
      - {% for author, articles in authors|sort %} -
    • {{ author }} ({{ articles|count }})
    • - {% endfor %} -
    +

    Authors on {{ SITENAME }}

    +
      +{% for author, articles in authors|sort %} +
    • {{ author }} ({{ articles|count }})
    • +{% endfor %} +
    {% endblock %} diff --git a/pelican/themes/simple/templates/base.html b/pelican/themes/simple/templates/base.html index a1fdcf78..0fcf5d1f 100644 --- a/pelican/themes/simple/templates/base.html +++ b/pelican/themes/simple/templates/base.html @@ -1,62 +1,65 @@ - + {% block head %} {% block title %}{{ SITENAME }}{% endblock title %} {% if FEED_ALL_ATOM %} - + {% endif %} {% if FEED_ALL_RSS %} - + {% endif %} {% if FEED_ATOM %} - + {% endif %} {% if FEED_RSS %} - + {% endif %} {% if CATEGORY_FEED_ATOM and category %} - + {% endif %} {% if CATEGORY_FEED_RSS and category %} - + {% endif %} {% if TAG_FEED_ATOM and tag %} - + {% endif %} {% if TAG_FEED_RSS and tag %} - + {% endif %} {% endblock head %} - + - + - + {% block content %} {% endblock %}
    -
    +
    Proudly powered by Pelican, which takes great advantage of Python. -
    +
    - + diff --git a/pelican/themes/simple/templates/categories.html b/pelican/themes/simple/templates/categories.html index 7999de43..f2a0581c 100644 --- a/pelican/themes/simple/templates/categories.html +++ b/pelican/themes/simple/templates/categories.html @@ -3,10 +3,10 @@ {% block title %}{{ SITENAME }} - Categories{% endblock %} {% block content %} -

    Categories on {{ SITENAME }}

    -
      - {% for category, articles in categories|sort %} -
    • {{ category }} ({{ articles|count }})
    • - {% endfor %} -
    +

    Categories on {{ SITENAME }}

    +
      +{% for category, articles in categories|sort %} +
    • {{ category }} ({{ articles|count }})
    • +{% endfor %} +
    {% endblock %} diff --git a/pelican/themes/simple/templates/category.html b/pelican/themes/simple/templates/category.html index 14d7ff09..062ae271 100644 --- a/pelican/themes/simple/templates/category.html +++ b/pelican/themes/simple/templates/category.html @@ -5,4 +5,3 @@ {% block content_title %}

    Articles in the {{ category }} category

    {% endblock %} - diff --git a/pelican/themes/simple/templates/index.html b/pelican/themes/simple/templates/index.html index ab4bc345..79d5b447 100644 --- a/pelican/themes/simple/templates/index.html +++ b/pelican/themes/simple/templates/index.html @@ -1,28 +1,33 @@ {% extends "base.html" %} {% block content %}
    -{% block content_title %} -

    All articles

    -{% endblock %} + {% block content_title %} +

    All articles

    + {% endblock %} -
      -{% for article in articles_page.object_list %} -
    1. -

      {{ article.title }}

      +
        + {% for article in articles_page.object_list %} +
      1. +
        +
        +

        {{ article.title }}

        +
        -
        By - {% for author in article.authors %} - {{ author }} - {% endfor %} +
        + By + {% for author in article.authors %} + {{ author }} + {% endfor %}
        {{ article.summary }}
        -
      2. -{% endfor %} -
      -{% if articles_page.has_other_pages() %} - {% include 'pagination.html' %} -{% endif %} +
      +
    2. + {% endfor %} +
    + {% if articles_page.has_other_pages() %} + {% include 'pagination.html' %} + {% endif %}
    {% endblock content %} diff --git a/pelican/themes/simple/templates/page.html b/pelican/themes/simple/templates/page.html index 7150d420..09ef2d64 100644 --- a/pelican/themes/simple/templates/page.html +++ b/pelican/themes/simple/templates/page.html @@ -4,24 +4,22 @@ {% block title %}{{ SITENAME }} - {{ page.title }}{%endblock%} {% block head %} - {{ super() }} +{{ super() }} - {% import 'translations.html' as translations with context %} - {% if translations.entry_hreflang(page) %} +{% import 'translations.html' as translations with context %} +{% if translations.entry_hreflang(page) %} {{ translations.entry_hreflang(page) }} - {% endif %} +{% endif %} {% endblock %} {% block content %} -

    {{ page.title }}

    - {% import 'translations.html' as translations with context %} - {{ translations.translations_for(page) }} +

    {{ page.title }}

    +{% import 'translations.html' as translations with context %} +{{ translations.translations_for(page) }} - {{ page.content }} +{{ page.content }} - {% if page.modified %} -

    - Last updated: {{ page.locale_modified }} -

    - {% endif %} +{% if page.modified %} +

    Last updated: {{ page.locale_modified }}

    +{% endif %} {% endblock %} diff --git a/pelican/themes/simple/templates/tags.html b/pelican/themes/simple/templates/tags.html index b90b0ac3..cebf11b3 100644 --- a/pelican/themes/simple/templates/tags.html +++ b/pelican/themes/simple/templates/tags.html @@ -3,10 +3,10 @@ {% block title %}{{ SITENAME }} - Tags{% endblock %} {% block content %} -

    Tags for {{ SITENAME }}

    -
      - {% for tag, articles in tags|sort %} -
    • {{ tag }} ({{ articles|count }})
    • - {% endfor %} -
    +

    Tags for {{ SITENAME }}

    +
      +{% for tag, articles in tags|sort %} +
    • {{ tag }} ({{ articles|count }})
    • +{% endfor %} +
    {% endblock %} diff --git a/pelican/themes/simple/templates/translations.html b/pelican/themes/simple/templates/translations.html index f0e2478d..fa05f485 100644 --- a/pelican/themes/simple/templates/translations.html +++ b/pelican/themes/simple/templates/translations.html @@ -1,16 +1,16 @@ {% macro translations_for(article) %} -{% if article.translations %} -Translations: -{% for translation in article.translations %} -{{ translation.lang }} -{% endfor %} -{% endif %} + {% if article.translations %} + Translations: + {% for translation in article.translations %} + {{ translation.lang }} + {% endfor %} + {% endif %} {% endmacro %} {% macro entry_hreflang(entry) %} {% if entry.translations %} - {% for translation in entry.translations %} - - {% endfor %} + {% for translation in entry.translations %} + + {% endfor %} {% endif %} {% endmacro %}