1
0
Fork 0
forked from github/pelican

Pull from ametaireau / pelican

This commit is contained in:
Samrat Man Singh 2012-07-10 20:56:00 +05:45
commit 875734f963
105 changed files with 2139 additions and 1458 deletions

View file

@ -39,6 +39,14 @@ The tests live in "pelican/tests" and you can run them using the
$ unit2 discover
If you have made changes that affect the output of a pelican generated weblog,
then you should update the output used by functional tests.
To do so, you can use the 2 following commands::
$ LC_ALL="C" pelican -o tests/output/custom/ -s samples/pelican.conf.py \
samples/content/
$ LC_ALL="C" USER="Dummy Author" pelican -o tests/output/basic/ samples/content/
Coding standards
================

View file

@ -49,3 +49,14 @@ install it. You can do so by typing::
In case you don't have pip installed, consider installing it via::
$ (sudo) easy_install pip
How do I assign custom templates on a per page basis?
=====================================================
It's as simple as adding an extra line of metadata to any pages or articles you
want to have it's own template.
:template: template_name
Then just make sure to have the template installed in to your theme as
``template_name.html``.

View file

@ -133,8 +133,12 @@ Pelican est fournit avec :doc:`pelican-themes`, un script permettant de gérer l
Paramètres divers
=================
FALLBACK_ON_FS_DATE :
Si *True*, Pelican se basera sur le *mtime* du fichier s'il n'y a pas de date spécifiée dans le fichier de l'article ;
DEFAULT_DATE:
Date par défaut à utiliser si l'information de date n'est pas spécifiée
dans les metadonnées de l'article.
Si 'fs', Pelican se basera sur le *mtime* du fichier.
Si c'est un tuple, il sera passé au constructeur datetime.datetime pour
générer l'objet datetime utilisé par défaut.
KEEP_OUTPUT DIRECTORY :
Ne génère que les fichiers modifiés et n'efface pas le repertoire de sortie ;

View file

@ -33,9 +33,13 @@ Setting name (default value) What doe
`DISPLAY_PAGES_ON_MENU` (``True``) Whether to display pages on the menu of the
template. Templates may or not honor this
setting.
`FALLBACK_ON_FS_DATE` (``True``) If True, Pelican will use the file system
`DEFAULT_DATE` (``fs``) The default date you want to use.
If 'fs', Pelican will use the file system
timestamp information (mtime) if it can't get
date information from the metadata.
If tuple object, it will instead generate the
default datetime object by passing the tuple to
the datetime.datetime constructor.
`JINJA_EXTENSIONS` (``[]``) A list of any Jinja2 extensions you want to use.
`DELETE_OUTPUT_DIRECTORY` (``False``) Delete the content of the output directory before
generating new files.

View file

@ -21,6 +21,7 @@ class Page(object):
:param content: the string to parse, containing the original content.
"""
mandatory_properties = ('title',)
default_template = 'page'
def __init__(self, content, metadata=None, settings=None,
filename=None):
@ -44,6 +45,9 @@ class Page(object):
# also keep track of the metadata attributes available
self.metadata = local_metadata
#default template if it's not defined in page
self.template = self._get_template()
# default author to the one in settings if not defined
if not hasattr(self, 'author'):
if 'AUTHOR' in settings:
@ -153,9 +157,16 @@ class Page(object):
url = property(functools.partial(get_url_setting, key='url'))
save_as = property(functools.partial(get_url_setting, key='save_as'))
def _get_template(self):
if hasattr(self, 'template') and self.template is not None:
return self.template
else:
return self.default_template
class Article(Page):
mandatory_properties = ('title', 'date', 'category')
default_template = 'article'
class Quote(Page):

View file

@ -168,11 +168,9 @@ class ArticlesGenerator(Generator):
def generate_articles(self, write):
"""Generate the articles."""
article_template = self.get_template('article')
for article in chain(self.translations, self.articles):
write(article.save_as,
article_template, self.context, article=article,
category=article.category)
write(article.save_as, self.get_template(article.template),
self.context, article=article, category=article.category)
def generate_direct_templates(self, write):
"""Generate direct templates pages"""
@ -223,10 +221,10 @@ class ArticlesGenerator(Generator):
def generate_drafts(self, write):
"""Generate drafts pages."""
article_template = self.get_template('article')
for article in self.drafts:
write('drafts/%s.html' % article.slug, article_template,
self.context, article=article, category=article.category)
write('drafts/%s.html' % article.slug,
self.get_template(article.template), self.context,
article=article, category=article.category)
def generate_pages(self, writer):
"""Generate the pages on the disk"""
@ -273,9 +271,13 @@ class ArticlesGenerator(Generator):
if category != '':
metadata['category'] = Category(category, self.settings)
if 'date' not in metadata and self.settings['FALLBACK_ON_FS_DATE']:
if 'date' not in metadata and self.settings['DEFAULT_DATE']:
if self.settings['DEFAULT_DATE'] == 'fs':
metadata['date'] = datetime.datetime.fromtimestamp(
os.stat(f).st_ctime)
os.stat(f).st_ctime)
else:
metadata['date'] = datetime.datetime(
*self.settings['DEFAULT_DATE'])
signals.article_generate_context.send(self, metadata=metadata)
article = Article(content, metadata, settings=self.settings,
@ -415,7 +417,6 @@ class PagesGenerator(Generator):
(repr(unicode.encode(page.status, 'utf-8')),
repr(f)))
self.pages, self.translations = process_translations(all_pages)
self.hidden_pages, self.hidden_translations = process_translations(hidden_pages)
@ -425,7 +426,7 @@ class PagesGenerator(Generator):
def generate_output(self, writer):
for page in chain(self.translations, self.pages,
self.hidden_translations, self.hidden_pages):
writer.write_file(page.save_as, self.get_template('page'),
writer.write_file(page.save_as, self.get_template(page.template),
self.context, page=page,
relative_urls=self.settings.get('RELATIVE_URLS'))

View file

@ -29,7 +29,7 @@ _DEFAULT_CONFIG = {'PATH': '.',
'DISPLAY_PAGES_ON_MENU': True,
'PDF_GENERATOR': False,
'DEFAULT_CATEGORY': 'misc',
'FALLBACK_ON_FS_DATE': True,
'DEFAULT_DATE': 'fs',
'WITH_FUTURE_DATES': True,
'CSS_FILE': 'main.css',
'REVERSE_ARCHIVE_ORDER': False,

View file

@ -8,8 +8,9 @@ GITHUB_URL = 'http://github.com/ametaireau/'
DISQUS_SITENAME = "blog-notmyidea"
PDF_GENERATOR = False
REVERSE_CATEGORY_ORDER = True
LOCALE = ""
LOCALE = "C"
DEFAULT_PAGINATION = 4
DEFAULT_DATE = (2012, 03, 02, 14, 01, 01)
FEED_RSS = 'feeds/all.rss.xml'
CATEGORY_FEED_RSS = 'feeds/%s.rss.xml'

View file

@ -0,0 +1,11 @@
This is a test hidden page with a custom template
#################################################
:status: hidden
:template: custom
The quick brown fox jumped over the lazy dog's back.
This page is hidden
This page has a custom template to be called when rendered

View file

@ -0,0 +1,8 @@
This is a test page with a preset template
##########################################
:template: custom
The quick brown fox jumped over the lazy dog's back.
This article has a custom template to be called when rendered

View file

@ -0,0 +1,8 @@
Article with template
#####################
:template: custom
This article has a custom template to be called when rendered
This is some content. With some stuff to "typogrify".

View file

@ -31,30 +31,35 @@
<li ><a href="./category/content.html">content</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li class="active"><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to A markdown powered article">A markdown powered article</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="a-markdown-powered-article.html" rel="bookmark"
title="Permalink to A markdown powered article">A markdown powered article</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2011-04-20T00:00:00">
Wed 20 April 2011
</abbr>
<address class="vcard author">
By <a class="url fn" href="./author/bruno.html">bruno</a>
By <a class="url fn" href="./author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href="./category/cat1.html">cat1</a>. </p>
@ -62,11 +67,11 @@
</footer><!-- /.post-info -->
<p>You're mutually oblivious.</p>
</div><!-- /.entry-content -->
<p>You're mutually oblivious.</p>
</div><!-- /.entry-content -->
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -31,11 +31,11 @@
<li ><a href="./category/content.html">content</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
@ -48,28 +48,28 @@
<dl>
<dt>Fri 15 October 2010</dt>
<dd><a href="unbelievable.html">Unbelievable !</a></dd>
<dd><a href="./unbelievable.html">Unbelievable !</a></dd>
<dt>Wed 20 October 2010</dt>
<dd><a href="oh-yeah.html">Oh yeah !</a></dd>
<dd><a href="./oh-yeah.html">Oh yeah !</a></dd>
<dt>Thu 02 December 2010</dt>
<dd><a href="this-is-a-super-article.html">This is a super article !</a></dd>
<dd><a href="./this-is-a-super-article.html">This is a super article !</a></dd>
<dt>Thu 17 February 2011</dt>
<dd><a href="article-1.html">Article 1</a></dd>
<dd><a href="./article-1.html">Article 1</a></dd>
<dt>Thu 17 February 2011</dt>
<dd><a href="article-2.html">Article 2</a></dd>
<dd><a href="./article-2.html">Article 2</a></dd>
<dt>Thu 17 February 2011</dt>
<dd><a href="article-3.html">Article 3</a></dd>
<dd><a href="./article-3.html">Article 3</a></dd>
<dt>Wed 20 April 2011</dt>
<dd><a href="a-markdown-powered-article.html">A markdown powered article</a></dd>
<dd><a href="./a-markdown-powered-article.html">A markdown powered article</a></dd>
<dt>Wed 29 February 2012</dt>
<dd><a href="second-article.html">Second article</a></dd>
<dd><a href="./second-article.html">Second article</a></dd>
</dl>
</section>

View file

@ -31,30 +31,35 @@
<li ><a href="./category/content.html">content</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li class="active"><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to Article 1">Article 1</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="article-1.html" rel="bookmark"
title="Permalink to Article 1">Article 1</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2011-02-17T00:00:00">
Thu 17 February 2011
</abbr>
<address class="vcard author">
By <a class="url fn" href="./author/bruno.html">bruno</a>
By <a class="url fn" href="./author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href="./category/cat1.html">cat1</a>. </p>
@ -62,12 +67,12 @@
</footer><!-- /.post-info -->
<p>Article 1</p>
<p>Article 1</p>
</div><!-- /.entry-content -->
</div><!-- /.entry-content -->
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -31,30 +31,35 @@
<li ><a href="./category/content.html">content</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li class="active"><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to Article 2">Article 2</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="article-2.html" rel="bookmark"
title="Permalink to Article 2">Article 2</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2011-02-17T00:00:00">
Thu 17 February 2011
</abbr>
<address class="vcard author">
By <a class="url fn" href="./author/bruno.html">bruno</a>
By <a class="url fn" href="./author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href="./category/cat1.html">cat1</a>. </p>
@ -62,12 +67,12 @@
</footer><!-- /.post-info -->
<p>Article 2</p>
<p>Article 2</p>
</div><!-- /.entry-content -->
</div><!-- /.entry-content -->
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -31,30 +31,35 @@
<li ><a href="./category/content.html">content</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li class="active"><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to Article 3">Article 3</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="article-3.html" rel="bookmark"
title="Permalink to Article 3">Article 3</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2011-02-17T00:00:00">
Thu 17 February 2011
</abbr>
<address class="vcard author">
By <a class="url fn" href="./author/bruno.html">bruno</a>
By <a class="url fn" href="./author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href="./category/cat1.html">cat1</a>. </p>
@ -62,12 +67,12 @@
</footer><!-- /.post-info -->
<p>Article 3</p>
<p>Article 3</p>
</div><!-- /.entry-content -->
</div><!-- /.entry-content -->
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -31,11 +31,11 @@
<li ><a href=".././category/content.html">content</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
@ -88,7 +88,6 @@ YEAH !</p>
@ -96,7 +95,8 @@ YEAH !</p>
<li><article class="hentry">
<header>
<h1><a href=".././this-is-a-super-article.html" rel="bookmark" title="Permalink to This is a super article !">This is a super article !</a></h1>
<h1><a href=".././this-is-a-super-article.html" rel="bookmark"
title="Permalink to This is a super article !">This is a super article !</a></h1>
</header>
<div class="entry-content">
@ -115,18 +115,19 @@ YEAH !</p>
</footer><!-- /.post-info -->
Multi-line metadata should be supported
as well as <strong>inline markup</strong>.
<p class="first last">Multi-line metadata should be supported
as well as <strong>inline markup</strong>.</p>
<a class="readmore" href=".././this-is-a-super-article.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>A Pelican Blog - bruno</title>
<title>A Pelican Blog - Dummy Author</title>
<meta charset="utf-8" />
<link rel="stylesheet" href=".././theme/css/main.css" type="text/css" />
<link href="/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="A Pelican Blog Atom Feed" />
@ -31,11 +31,11 @@
<li ><a href=".././category/content.html">content</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
@ -57,7 +57,7 @@
<address class="vcard author">
By <a class="url fn" href=".././author/bruno.html">bruno</a>
By <a class="url fn" href=".././author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
@ -77,7 +77,6 @@
@ -85,7 +84,8 @@
<li><article class="hentry">
<header>
<h1><a href=".././article-1.html" rel="bookmark" title="Permalink to Article 1">Article 1</a></h1>
<h1><a href=".././article-1.html" rel="bookmark"
title="Permalink to Article 1">Article 1</a></h1>
</header>
<div class="entry-content">
@ -96,7 +96,7 @@
<address class="vcard author">
By <a class="url fn" href=".././author/bruno.html">bruno</a>
By <a class="url fn" href=".././author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
@ -112,7 +112,6 @@
</article></li>
@ -120,7 +119,8 @@
<li><article class="hentry">
<header>
<h1><a href=".././article-2.html" rel="bookmark" title="Permalink to Article 2">Article 2</a></h1>
<h1><a href=".././article-2.html" rel="bookmark"
title="Permalink to Article 2">Article 2</a></h1>
</header>
<div class="entry-content">
@ -131,7 +131,7 @@
<address class="vcard author">
By <a class="url fn" href=".././author/bruno.html">bruno</a>
By <a class="url fn" href=".././author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
@ -147,7 +147,6 @@
</article></li>
@ -155,7 +154,8 @@
<li><article class="hentry">
<header>
<h1><a href=".././article-3.html" rel="bookmark" title="Permalink to Article 3">Article 3</a></h1>
<h1><a href=".././article-3.html" rel="bookmark"
title="Permalink to Article 3">Article 3</a></h1>
</header>
<div class="entry-content">
@ -166,7 +166,7 @@
<address class="vcard author">
By <a class="url fn" href=".././author/bruno.html">bruno</a>
By <a class="url fn" href=".././author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
@ -182,7 +182,6 @@
</article></li>
@ -190,7 +189,8 @@
<li><article class="hentry">
<header>
<h1><a href=".././second-article.html" rel="bookmark" title="Permalink to Second article">Second article</a></h1>
<h1><a href=".././second-article.html" rel="bookmark"
title="Permalink to Second article">Second article</a></h1>
</header>
<div class="entry-content">
@ -201,10 +201,10 @@
<address class="vcard author">
By <a class="url fn" href=".././author/bruno.html">bruno</a>
By <a class="url fn" href=".././author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>
<p>In <a href=".././category/misc.html">misc</a>. </p>
<p>tags: <a href=".././tag/foo.html">foo</a><a href=".././tag/bar.html">bar</a><a href=".././tag/baz.html">baz</a></p>
@ -222,7 +222,6 @@ Translations:
</article></li>
@ -230,7 +229,8 @@ Translations:
<li><article class="hentry">
<header>
<h1><a href=".././unbelievable.html" rel="bookmark" title="Permalink to Unbelievable !">Unbelievable !</a></h1>
<h1><a href=".././unbelievable.html" rel="bookmark"
title="Permalink to Unbelievable !">Unbelievable !</a></h1>
</header>
<div class="entry-content">
@ -241,10 +241,10 @@ Translations:
<address class="vcard author">
By <a class="url fn" href=".././author/bruno.html">bruno</a>
By <a class="url fn" href=".././author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>
<p>In <a href=".././category/misc.html">misc</a>. </p>
@ -257,10 +257,10 @@ Translations:
</article></li>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -31,11 +31,11 @@
<li ><a href="./category/content.html">content</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
@ -44,13 +44,13 @@
<ul>
<li><a href="category/content.html">content</a></li>
<li><a href="./category/bar.html">bar</a></li>
<li><a href="category/cat1.html">cat1</a></li>
<li><a href="./category/cat1.html">cat1</a></li>
<li><a href="category/bar.html">bar</a></li>
<li><a href="./category/misc.html">misc</a></li>
<li><a href="category/yeah.html">yeah</a></li>
<li><a href="./category/yeah.html">yeah</a></li>
</ul>

View file

@ -31,11 +31,11 @@
<li ><a href=".././category/content.html">content</a></li>
<li class="active"><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li class="active"><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
@ -85,8 +85,8 @@ YEAH !</p>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -31,11 +31,11 @@
<li ><a href=".././category/content.html">content</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li class="active"><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
@ -57,7 +57,7 @@
<address class="vcard author">
By <a class="url fn" href=".././author/bruno.html">bruno</a>
By <a class="url fn" href=".././author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
@ -77,7 +77,6 @@
@ -85,7 +84,8 @@
<li><article class="hentry">
<header>
<h1><a href=".././article-1.html" rel="bookmark" title="Permalink to Article 1">Article 1</a></h1>
<h1><a href=".././article-1.html" rel="bookmark"
title="Permalink to Article 1">Article 1</a></h1>
</header>
<div class="entry-content">
@ -96,7 +96,7 @@
<address class="vcard author">
By <a class="url fn" href=".././author/bruno.html">bruno</a>
By <a class="url fn" href=".././author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
@ -112,7 +112,6 @@
</article></li>
@ -120,7 +119,8 @@
<li><article class="hentry">
<header>
<h1><a href=".././article-2.html" rel="bookmark" title="Permalink to Article 2">Article 2</a></h1>
<h1><a href=".././article-2.html" rel="bookmark"
title="Permalink to Article 2">Article 2</a></h1>
</header>
<div class="entry-content">
@ -131,7 +131,7 @@
<address class="vcard author">
By <a class="url fn" href=".././author/bruno.html">bruno</a>
By <a class="url fn" href=".././author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
@ -147,7 +147,6 @@
</article></li>
@ -155,7 +154,8 @@
<li><article class="hentry">
<header>
<h1><a href=".././article-3.html" rel="bookmark" title="Permalink to Article 3">Article 3</a></h1>
<h1><a href=".././article-3.html" rel="bookmark"
title="Permalink to Article 3">Article 3</a></h1>
</header>
<div class="entry-content">
@ -166,7 +166,7 @@
<address class="vcard author">
By <a class="url fn" href=".././author/bruno.html">bruno</a>
By <a class="url fn" href=".././author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
@ -182,10 +182,10 @@
</article></li>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -31,11 +31,11 @@
<li class="active"><a href=".././category/content.html">content</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li class="active"><a href=".././category/content.html">content</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
@ -57,7 +57,7 @@
<address class="vcard author">
By <a class="url fn" href=".././author/bruno.html">bruno</a>
By <a class="url fn" href=".././author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>
@ -102,7 +102,7 @@ Translations:
<address class="vcard author">
By <a class="url fn" href=".././author/bruno.html">bruno</a>
By <a class="url fn" href=".././author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>

View file

@ -0,0 +1,147 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>A Pelican Blog - misc</title>
<meta charset="utf-8" />
<link rel="stylesheet" href=".././theme/css/main.css" type="text/css" />
<link href="/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="A Pelican Blog Atom Feed" />
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<!--[if lte IE 7]>
<link rel="stylesheet" type="text/css" media="all" href=".././css/ie.css"/>
<script src=".././js/IE8.js" type="text/javascript"></script><![endif]-->
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" media="all" href=".././css/ie6.css"/><![endif]-->
</head>
<body id="index" class="home">
<header id="banner" class="body">
<h1><a href="../.">A Pelican Blog </a></h1>
<nav><ul>
<li><a href=".././pages/this-is-a-test-page.html">This is a test page</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li class="active"><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
</ul></nav>
</header><!-- /#banner -->
<aside id="featured" class="body">
<article>
<h1 class="entry-title"><a href=".././second-article.html">Second article</a></h1>
<footer class="post-info">
<abbr class="published" title="2012-02-29T00:00:00">
Wed 29 February 2012
</abbr>
<address class="vcard author">
By <a class="url fn" href=".././author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href=".././category/misc.html">misc</a>. </p>
<p>tags: <a href=".././tag/foo.html">foo</a><a href=".././tag/bar.html">bar</a><a href=".././tag/baz.html">baz</a></p>
Translations:
<a href=".././second-article-fr.html">fr</a>
</footer><!-- /.post-info --><p>This is some article, in english</p>
</article>
</aside><!-- /#featured -->
<section id="content" class="body">
<h1>Other articles</h1>
<hr />
<ol id="posts-list" class="hfeed">
<li><article class="hentry">
<header>
<h1><a href=".././unbelievable.html" rel="bookmark"
title="Permalink to Unbelievable !">Unbelievable !</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2010-10-15T20:30:00">
Fri 15 October 2010
</abbr>
<address class="vcard author">
By <a class="url fn" href=".././author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href=".././category/misc.html">misc</a>. </p>
</footer><!-- /.post-info -->
<p>Or completely awesome. Depends the needs.</p>
<a class="readmore" href=".././unbelievable.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
</ol><!-- /#posts-list -->
</section><!-- /#content -->
<section id="extras" class="body">
</section><!-- /#extras -->
<footer id="contentinfo" class="body">
<address id="about" class="vcard body">
Proudly powered by <a href="http://pelican.notmyidea.org/">Pelican</a>, which takes great advantage of <a href="http://python.org">Python</a>.
</address><!-- /#about -->
<p>The theme is by <a href="http://coding.smashingmagazine.com/2009/08/04/designing-a-html-5-layout-from-scratch/">Smashing Magazine</a>, thanks!</p>
</footer><!-- /#contentinfo -->
</body>
</html>

View file

@ -31,11 +31,11 @@
<li ><a href=".././category/content.html">content</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li class="active"><a href=".././category/yeah.html">yeah</a></li>
@ -86,8 +86,8 @@
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -31,44 +31,49 @@
<li class="active"><a href=".././category/content.html">content</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li class="active"><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to A draft article">A draft article</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2012-03-02T14:01:01">
Fri 02 March 2012
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="a-draft-article.html" rel="bookmark"
title="Permalink to A draft article">A draft article</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2012-05-19T23:55:50.764304">
Sat 19 May 2012
</abbr>
<address class="vcard author">
By <a class="url fn" href=".././author/bruno.html">bruno</a>
By <a class="url fn" href=".././author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>
<p>In <a href=".././category/misc.html">misc</a>. </p>
</footer><!-- /.post-info -->
<p>This is a draft article, it should live under the /drafts/ folder and not be
<p>This is a draft article, it should live under the /drafts/ folder and not be
listed anywhere else.</p>
</div><!-- /.entry-content -->
</div><!-- /.entry-content -->
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>A Pelican Blog</title><link href="../." rel="alternate"></link><link href=".././feeds/all-en.atom.xml" rel="self"></link><id>../.</id><updated>2012-02-29T00:00:00Z</updated><entry><title>Second article</title><link href=".././second-article.html" rel="alternate"></link><updated>2012-02-29T00:00:00Z</updated><author><name>bruno</name></author><id>.././second-article.html</id><summary type="html">&lt;p&gt;This is some article, in english&lt;/p&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry><entry><title>A markdown powered article</title><link href=".././a-markdown-powered-article.html" rel="alternate"></link><updated>2011-04-20T00:00:00Z</updated><author><name>bruno</name></author><id>.././a-markdown-powered-article.html</id><summary type="html">&lt;p&gt;You're mutually oblivious.&lt;/p&gt;</summary></entry><entry><title>Article 1</title><link href=".././article-1.html" rel="alternate"></link><updated>2011-02-17T00:00:00Z</updated><author><name>bruno</name></author><id>.././article-1.html</id><summary type="html">&lt;p&gt;Article 1&lt;/p&gt;
</summary></entry><entry><title>Article 2</title><link href=".././article-2.html" rel="alternate"></link><updated>2011-02-17T00:00:00Z</updated><author><name>bruno</name></author><id>.././article-2.html</id><summary type="html">&lt;p&gt;Article 2&lt;/p&gt;
</summary></entry><entry><title>Article 3</title><link href=".././article-3.html" rel="alternate"></link><updated>2011-02-17T00:00:00Z</updated><author><name>bruno</name></author><id>.././article-3.html</id><summary type="html">&lt;p&gt;Article 3&lt;/p&gt;
</summary></entry><entry><title>This is a super article !</title><link href=".././this-is-a-super-article.html" rel="alternate"></link><updated>2010-12-02T10:14:00Z</updated><author><name>Alexis Métaireau</name></author><id>.././this-is-a-super-article.html</id><summary type="html">&lt;p&gt;Some content here !&lt;/p&gt;
<feed xmlns="http://www.w3.org/2005/Atom"><title>A Pelican Blog</title><link href=".././" rel="alternate"></link><link href="None/feeds/all-en.atom.xml" rel="self"></link><id>.././</id><updated>2012-02-29T00:00:00Z</updated><entry><title>Second article</title><link href=".././second-article.html" rel="alternate"></link><updated>2012-02-29T00:00:00Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2012-02-29:second-article.html</id><summary type="html">&lt;p&gt;This is some article, in english&lt;/p&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry><entry><title>A markdown powered article</title><link href=".././a-markdown-powered-article.html" rel="alternate"></link><updated>2011-04-20T00:00:00Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2011-04-20:a-markdown-powered-article.html</id><summary type="html">&lt;p&gt;You're mutually oblivious.&lt;/p&gt;</summary></entry><entry><title>Article 1</title><link href=".././article-1.html" rel="alternate"></link><updated>2011-02-17T00:00:00Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2011-02-17:article-1.html</id><summary type="html">&lt;p&gt;Article 1&lt;/p&gt;
</summary></entry><entry><title>Article 2</title><link href=".././article-2.html" rel="alternate"></link><updated>2011-02-17T00:00:00Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2011-02-17:article-2.html</id><summary type="html">&lt;p&gt;Article 2&lt;/p&gt;
</summary></entry><entry><title>Article 3</title><link href=".././article-3.html" rel="alternate"></link><updated>2011-02-17T00:00:00Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2011-02-17:article-3.html</id><summary type="html">&lt;p&gt;Article 3&lt;/p&gt;
</summary></entry><entry><title>This is a super article !</title><link href=".././this-is-a-super-article.html" rel="alternate"></link><updated>2010-12-02T10:14:00Z</updated><author><name>Alexis Métaireau</name></author><id>tag:../.,2010-12-02:this-is-a-super-article.html</id><summary type="html">&lt;p&gt;Some content here !&lt;/p&gt;
&lt;div class="section" id="this-is-a-simple-title"&gt;
&lt;h2&gt;This is a simple title&lt;/h2&gt;
&lt;p&gt;And here comes the cool &lt;a class="reference external" href="http://books.couchdb.org/relax/design-documents/views"&gt;stuff&lt;/a&gt;.&lt;/p&gt;
@ -15,11 +15,11 @@
&lt;/pre&gt;
&lt;p&gt;→ And now try with some utf8 hell: ééé&lt;/p&gt;
&lt;/div&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="foobar"></category></entry><entry><title>Oh yeah !</title><link href=".././oh-yeah.html" rel="alternate"></link><updated>2010-10-20T10:14:00Z</updated><author><name>Alexis Métaireau</name></author><id>.././oh-yeah.html</id><summary type="html">&lt;div class="section" id="why-not"&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="foobar"></category></entry><entry><title>Oh yeah !</title><link href=".././oh-yeah.html" rel="alternate"></link><updated>2010-10-20T10:14:00Z</updated><author><name>Alexis Métaireau</name></author><id>tag:../.,2010-10-20:oh-yeah.html</id><summary type="html">&lt;div class="section" id="why-not"&gt;
&lt;h2&gt;Why not ?&lt;/h2&gt;
&lt;p&gt;After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst !
YEAH !&lt;/p&gt;
&lt;img alt="alternate text" src="pictures/Sushi.jpg" style="width: 600px; height: 450px;" /&gt;
&lt;/div&gt;
</summary><category term="oh"></category><category term="bar"></category><category term="yeah"></category></entry><entry><title>Unbelievable !</title><link href=".././unbelievable.html" rel="alternate"></link><updated>2010-10-15T20:30:00Z</updated><author><name>bruno</name></author><id>.././unbelievable.html</id><summary type="html">&lt;p&gt;Or completely awesome. Depends the needs.&lt;/p&gt;
</summary><category term="oh"></category><category term="bar"></category><category term="yeah"></category></entry><entry><title>Unbelievable !</title><link href=".././unbelievable.html" rel="alternate"></link><updated>2010-10-15T20:30:00Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2010-10-15:unbelievable.html</id><summary type="html">&lt;p&gt;Or completely awesome. Depends the needs.&lt;/p&gt;
</summary></entry></feed>

View file

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>A Pelican Blog</title><link href="../." rel="alternate"></link><link href=".././feeds/all-fr.atom.xml" rel="self"></link><id>../.</id><updated>2012-03-02T14:01:01Z</updated><entry><title>Trop bien !</title><link href=".././oh-yeah-fr.html" rel="alternate"></link><updated>2012-03-02T14:01:01Z</updated><author><name>bruno</name></author><id>.././oh-yeah-fr.html</id><summary type="html">&lt;p&gt;Et voila du contenu en français&lt;/p&gt;
</summary></entry><entry><title>Deuxième article</title><link href=".././second-article-fr.html" rel="alternate"></link><updated>2012-02-29T00:00:00Z</updated><author><name>bruno</name></author><id>.././second-article-fr.html</id><summary type="html">&lt;p&gt;Ceci est un article, en français.&lt;/p&gt;
<feed xmlns="http://www.w3.org/2005/Atom"><title>A Pelican Blog</title><link href=".././" rel="alternate"></link><link href="None/feeds/all-fr.atom.xml" rel="self"></link><id>.././</id><updated>2012-05-19T23:55:50Z</updated><entry><title>Trop bien !</title><link href=".././oh-yeah-fr.html" rel="alternate"></link><updated>2012-05-19T23:55:50Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2012-05-19:oh-yeah-fr.html</id><summary type="html">&lt;p&gt;Et voila du contenu en français&lt;/p&gt;
</summary></entry><entry><title>Deuxième article</title><link href=".././second-article-fr.html" rel="alternate"></link><updated>2012-02-29T00:00:00Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2012-02-29:second-article-fr.html</id><summary type="html">&lt;p&gt;Ceci est un article, en français.&lt;/p&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry></feed>

View file

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>A Pelican Blog</title><link href="../." rel="alternate"></link><link href=".././feeds/all.atom.xml" rel="self"></link><id>../.</id><updated>2012-02-29T00:00:00Z</updated><entry><title>Second article</title><link href=".././second-article.html" rel="alternate"></link><updated>2012-02-29T00:00:00Z</updated><author><name>bruno</name></author><id>.././second-article.html</id><summary type="html">&lt;p&gt;This is some article, in english&lt;/p&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry><entry><title>A markdown powered article</title><link href=".././a-markdown-powered-article.html" rel="alternate"></link><updated>2011-04-20T00:00:00Z</updated><author><name>bruno</name></author><id>.././a-markdown-powered-article.html</id><summary type="html">&lt;p&gt;You're mutually oblivious.&lt;/p&gt;</summary></entry><entry><title>Article 1</title><link href=".././article-1.html" rel="alternate"></link><updated>2011-02-17T00:00:00Z</updated><author><name>bruno</name></author><id>.././article-1.html</id><summary type="html">&lt;p&gt;Article 1&lt;/p&gt;
</summary></entry><entry><title>Article 2</title><link href=".././article-2.html" rel="alternate"></link><updated>2011-02-17T00:00:00Z</updated><author><name>bruno</name></author><id>.././article-2.html</id><summary type="html">&lt;p&gt;Article 2&lt;/p&gt;
</summary></entry><entry><title>Article 3</title><link href=".././article-3.html" rel="alternate"></link><updated>2011-02-17T00:00:00Z</updated><author><name>bruno</name></author><id>.././article-3.html</id><summary type="html">&lt;p&gt;Article 3&lt;/p&gt;
</summary></entry><entry><title>This is a super article !</title><link href=".././this-is-a-super-article.html" rel="alternate"></link><updated>2010-12-02T10:14:00Z</updated><author><name>Alexis Métaireau</name></author><id>.././this-is-a-super-article.html</id><summary type="html">&lt;p&gt;Some content here !&lt;/p&gt;
<feed xmlns="http://www.w3.org/2005/Atom"><title>A Pelican Blog</title><link href=".././" rel="alternate"></link><link href="None/feeds/all.atom.xml" rel="self"></link><id>.././</id><updated>2012-02-29T00:00:00Z</updated><entry><title>Second article</title><link href=".././second-article.html" rel="alternate"></link><updated>2012-02-29T00:00:00Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2012-02-29:second-article.html</id><summary type="html">&lt;p&gt;This is some article, in english&lt;/p&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry><entry><title>A markdown powered article</title><link href=".././a-markdown-powered-article.html" rel="alternate"></link><updated>2011-04-20T00:00:00Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2011-04-20:a-markdown-powered-article.html</id><summary type="html">&lt;p&gt;You're mutually oblivious.&lt;/p&gt;</summary></entry><entry><title>Article 1</title><link href=".././article-1.html" rel="alternate"></link><updated>2011-02-17T00:00:00Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2011-02-17:article-1.html</id><summary type="html">&lt;p&gt;Article 1&lt;/p&gt;
</summary></entry><entry><title>Article 2</title><link href=".././article-2.html" rel="alternate"></link><updated>2011-02-17T00:00:00Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2011-02-17:article-2.html</id><summary type="html">&lt;p&gt;Article 2&lt;/p&gt;
</summary></entry><entry><title>Article 3</title><link href=".././article-3.html" rel="alternate"></link><updated>2011-02-17T00:00:00Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2011-02-17:article-3.html</id><summary type="html">&lt;p&gt;Article 3&lt;/p&gt;
</summary></entry><entry><title>This is a super article !</title><link href=".././this-is-a-super-article.html" rel="alternate"></link><updated>2010-12-02T10:14:00Z</updated><author><name>Alexis Métaireau</name></author><id>tag:../.,2010-12-02:this-is-a-super-article.html</id><summary type="html">&lt;p&gt;Some content here !&lt;/p&gt;
&lt;div class="section" id="this-is-a-simple-title"&gt;
&lt;h2&gt;This is a simple title&lt;/h2&gt;
&lt;p&gt;And here comes the cool &lt;a class="reference external" href="http://books.couchdb.org/relax/design-documents/views"&gt;stuff&lt;/a&gt;.&lt;/p&gt;
@ -15,11 +15,11 @@
&lt;/pre&gt;
&lt;p&gt;→ And now try with some utf8 hell: ééé&lt;/p&gt;
&lt;/div&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="foobar"></category></entry><entry><title>Oh yeah !</title><link href=".././oh-yeah.html" rel="alternate"></link><updated>2010-10-20T10:14:00Z</updated><author><name>Alexis Métaireau</name></author><id>.././oh-yeah.html</id><summary type="html">&lt;div class="section" id="why-not"&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="foobar"></category></entry><entry><title>Oh yeah !</title><link href=".././oh-yeah.html" rel="alternate"></link><updated>2010-10-20T10:14:00Z</updated><author><name>Alexis Métaireau</name></author><id>tag:../.,2010-10-20:oh-yeah.html</id><summary type="html">&lt;div class="section" id="why-not"&gt;
&lt;h2&gt;Why not ?&lt;/h2&gt;
&lt;p&gt;After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst !
YEAH !&lt;/p&gt;
&lt;img alt="alternate text" src="pictures/Sushi.jpg" style="width: 600px; height: 450px;" /&gt;
&lt;/div&gt;
</summary><category term="oh"></category><category term="bar"></category><category term="yeah"></category></entry><entry><title>Unbelievable !</title><link href=".././unbelievable.html" rel="alternate"></link><updated>2010-10-15T20:30:00Z</updated><author><name>bruno</name></author><id>.././unbelievable.html</id><summary type="html">&lt;p&gt;Or completely awesome. Depends the needs.&lt;/p&gt;
</summary><category term="oh"></category><category term="bar"></category><category term="yeah"></category></entry><entry><title>Unbelievable !</title><link href=".././unbelievable.html" rel="alternate"></link><updated>2010-10-15T20:30:00Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2010-10-15:unbelievable.html</id><summary type="html">&lt;p&gt;Or completely awesome. Depends the needs.&lt;/p&gt;
</summary></entry></feed>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>A Pelican Blog</title><link href="../." rel="alternate"></link><link href=".././feeds/bar.atom.xml" rel="self"></link><id>../.</id><updated>2010-10-20T10:14:00Z</updated><entry><title>Oh yeah !</title><link href=".././oh-yeah.html" rel="alternate"></link><updated>2010-10-20T10:14:00Z</updated><author><name>Alexis Métaireau</name></author><id>.././oh-yeah.html</id><summary type="html">&lt;div class="section" id="why-not"&gt;
<feed xmlns="http://www.w3.org/2005/Atom"><title>A Pelican Blog</title><link href=".././" rel="alternate"></link><link href="None/feeds/bar.atom.xml" rel="self"></link><id>.././</id><updated>2010-10-20T10:14:00Z</updated><entry><title>Oh yeah !</title><link href=".././oh-yeah.html" rel="alternate"></link><updated>2010-10-20T10:14:00Z</updated><author><name>Alexis Métaireau</name></author><id>tag:../.,2010-10-20:oh-yeah.html</id><summary type="html">&lt;div class="section" id="why-not"&gt;
&lt;h2&gt;Why not ?&lt;/h2&gt;
&lt;p&gt;After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst !
YEAH !&lt;/p&gt;

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>A Pelican Blog</title><link href="../." rel="alternate"></link><link href=".././feeds/cat1.atom.xml" rel="self"></link><id>../.</id><updated>2011-04-20T00:00:00Z</updated><entry><title>A markdown powered article</title><link href=".././a-markdown-powered-article.html" rel="alternate"></link><updated>2011-04-20T00:00:00Z</updated><author><name>bruno</name></author><id>.././a-markdown-powered-article.html</id><summary type="html">&lt;p&gt;You're mutually oblivious.&lt;/p&gt;</summary></entry><entry><title>Article 1</title><link href=".././article-1.html" rel="alternate"></link><updated>2011-02-17T00:00:00Z</updated><author><name>bruno</name></author><id>.././article-1.html</id><summary type="html">&lt;p&gt;Article 1&lt;/p&gt;
</summary></entry><entry><title>Article 2</title><link href=".././article-2.html" rel="alternate"></link><updated>2011-02-17T00:00:00Z</updated><author><name>bruno</name></author><id>.././article-2.html</id><summary type="html">&lt;p&gt;Article 2&lt;/p&gt;
</summary></entry><entry><title>Article 3</title><link href=".././article-3.html" rel="alternate"></link><updated>2011-02-17T00:00:00Z</updated><author><name>bruno</name></author><id>.././article-3.html</id><summary type="html">&lt;p&gt;Article 3&lt;/p&gt;
<feed xmlns="http://www.w3.org/2005/Atom"><title>A Pelican Blog</title><link href=".././" rel="alternate"></link><link href="None/feeds/cat1.atom.xml" rel="self"></link><id>.././</id><updated>2011-04-20T00:00:00Z</updated><entry><title>A markdown powered article</title><link href=".././a-markdown-powered-article.html" rel="alternate"></link><updated>2011-04-20T00:00:00Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2011-04-20:a-markdown-powered-article.html</id><summary type="html">&lt;p&gt;You're mutually oblivious.&lt;/p&gt;</summary></entry><entry><title>Article 1</title><link href=".././article-1.html" rel="alternate"></link><updated>2011-02-17T00:00:00Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2011-02-17:article-1.html</id><summary type="html">&lt;p&gt;Article 1&lt;/p&gt;
</summary></entry><entry><title>Article 2</title><link href=".././article-2.html" rel="alternate"></link><updated>2011-02-17T00:00:00Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2011-02-17:article-2.html</id><summary type="html">&lt;p&gt;Article 2&lt;/p&gt;
</summary></entry><entry><title>Article 3</title><link href=".././article-3.html" rel="alternate"></link><updated>2011-02-17T00:00:00Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2011-02-17:article-3.html</id><summary type="html">&lt;p&gt;Article 3&lt;/p&gt;
</summary></entry></feed>

View file

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>A Pelican Blog</title><link href="../." rel="alternate"></link><link href=".././feeds/content.atom.xml" rel="self"></link><id>../.</id><updated>2012-02-29T00:00:00Z</updated><entry><title>Second article</title><link href=".././second-article.html" rel="alternate"></link><updated>2012-02-29T00:00:00Z</updated><author><name>bruno</name></author><id>.././second-article.html</id><summary type="html">&lt;p&gt;This is some article, in english&lt;/p&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry><entry><title>Unbelievable !</title><link href=".././unbelievable.html" rel="alternate"></link><updated>2010-10-15T20:30:00Z</updated><author><name>bruno</name></author><id>.././unbelievable.html</id><summary type="html">&lt;p&gt;Or completely awesome. Depends the needs.&lt;/p&gt;
<feed xmlns="http://www.w3.org/2005/Atom"><title>A Pelican Blog</title><link href=".././" rel="alternate"></link><link href="None/feeds/content.atom.xml" rel="self"></link><id>.././</id><updated>2012-02-29T00:00:00Z</updated><entry><title>Second article</title><link href=".././second-article.html" rel="alternate"></link><updated>2012-02-29T00:00:00Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2012-02-29:second-article.html</id><summary type="html">&lt;p&gt;This is some article, in english&lt;/p&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry><entry><title>Unbelievable !</title><link href=".././unbelievable.html" rel="alternate"></link><updated>2010-10-15T20:30:00Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2010-10-15:unbelievable.html</id><summary type="html">&lt;p&gt;Or completely awesome. Depends the needs.&lt;/p&gt;
</summary></entry></feed>

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>A Pelican Blog</title><link href=".././" rel="alternate"></link><link href="None/feeds/misc.atom.xml" rel="self"></link><id>.././</id><updated>2012-02-29T00:00:00Z</updated><entry><title>Second article</title><link href=".././second-article.html" rel="alternate"></link><updated>2012-02-29T00:00:00Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2012-02-29:second-article.html</id><summary type="html">&lt;p&gt;This is some article, in english&lt;/p&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry><entry><title>Unbelievable !</title><link href=".././unbelievable.html" rel="alternate"></link><updated>2010-10-15T20:30:00Z</updated><author><name>Dummy Author</name></author><id>tag:../.,2010-10-15:unbelievable.html</id><summary type="html">&lt;p&gt;Or completely awesome. Depends the needs.&lt;/p&gt;
</summary></entry></feed>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>A Pelican Blog</title><link href="../." rel="alternate"></link><link href=".././feeds/yeah.atom.xml" rel="self"></link><id>../.</id><updated>2010-12-02T10:14:00Z</updated><entry><title>This is a super article !</title><link href=".././this-is-a-super-article.html" rel="alternate"></link><updated>2010-12-02T10:14:00Z</updated><author><name>Alexis Métaireau</name></author><id>.././this-is-a-super-article.html</id><summary type="html">&lt;p&gt;Some content here !&lt;/p&gt;
<feed xmlns="http://www.w3.org/2005/Atom"><title>A Pelican Blog</title><link href=".././" rel="alternate"></link><link href="None/feeds/yeah.atom.xml" rel="self"></link><id>.././</id><updated>2010-12-02T10:14:00Z</updated><entry><title>This is a super article !</title><link href=".././this-is-a-super-article.html" rel="alternate"></link><updated>2010-12-02T10:14:00Z</updated><author><name>Alexis Métaireau</name></author><id>tag:../.,2010-12-02:this-is-a-super-article.html</id><summary type="html">&lt;p&gt;Some content here !&lt;/p&gt;
&lt;div class="section" id="this-is-a-simple-title"&gt;
&lt;h2&gt;This is a simple title&lt;/h2&gt;
&lt;p&gt;And here comes the cool &lt;a class="reference external" href="http://books.couchdb.org/relax/design-documents/views"&gt;stuff&lt;/a&gt;.&lt;/p&gt;

View file

@ -31,11 +31,11 @@
<li ><a href="./category/content.html">content</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
@ -57,10 +57,10 @@
<address class="vcard author">
By <a class="url fn" href="./author/bruno.html">bruno</a>
By <a class="url fn" href="./author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href="./category/content.html">content</a>. </p>
<p>In <a href="./category/misc.html">misc</a>. </p>
<p>tags: <a href="./tag/foo.html">foo</a><a href="./tag/bar.html">bar</a><a href="./tag/baz.html">baz</a></p>
@ -83,7 +83,6 @@ Translations:
@ -91,7 +90,8 @@ Translations:
<li><article class="hentry">
<header>
<h1><a href="./a-markdown-powered-article.html" rel="bookmark" title="Permalink to A markdown powered article">A markdown powered article</a></h1>
<h1><a href="./a-markdown-powered-article.html" rel="bookmark"
title="Permalink to A markdown powered article">A markdown powered article</a></h1>
</header>
<div class="entry-content">
@ -102,7 +102,7 @@ Translations:
<address class="vcard author">
By <a class="url fn" href="./author/bruno.html">bruno</a>
By <a class="url fn" href="./author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href="./category/cat1.html">cat1</a>. </p>
@ -117,7 +117,6 @@ Translations:
</article></li>
@ -125,7 +124,8 @@ Translations:
<li><article class="hentry">
<header>
<h1><a href="./article-1.html" rel="bookmark" title="Permalink to Article 1">Article 1</a></h1>
<h1><a href="./article-1.html" rel="bookmark"
title="Permalink to Article 1">Article 1</a></h1>
</header>
<div class="entry-content">
@ -136,7 +136,7 @@ Translations:
<address class="vcard author">
By <a class="url fn" href="./author/bruno.html">bruno</a>
By <a class="url fn" href="./author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href="./category/cat1.html">cat1</a>. </p>
@ -152,7 +152,6 @@ Translations:
</article></li>
@ -160,7 +159,8 @@ Translations:
<li><article class="hentry">
<header>
<h1><a href="./article-2.html" rel="bookmark" title="Permalink to Article 2">Article 2</a></h1>
<h1><a href="./article-2.html" rel="bookmark"
title="Permalink to Article 2">Article 2</a></h1>
</header>
<div class="entry-content">
@ -171,7 +171,7 @@ Translations:
<address class="vcard author">
By <a class="url fn" href="./author/bruno.html">bruno</a>
By <a class="url fn" href="./author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href="./category/cat1.html">cat1</a>. </p>
@ -187,7 +187,6 @@ Translations:
</article></li>
@ -195,7 +194,8 @@ Translations:
<li><article class="hentry">
<header>
<h1><a href="./article-3.html" rel="bookmark" title="Permalink to Article 3">Article 3</a></h1>
<h1><a href="./article-3.html" rel="bookmark"
title="Permalink to Article 3">Article 3</a></h1>
</header>
<div class="entry-content">
@ -206,7 +206,7 @@ Translations:
<address class="vcard author">
By <a class="url fn" href="./author/bruno.html">bruno</a>
By <a class="url fn" href="./author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href="./category/cat1.html">cat1</a>. </p>
@ -222,7 +222,6 @@ Translations:
</article></li>
@ -230,7 +229,8 @@ Translations:
<li><article class="hentry">
<header>
<h1><a href="./this-is-a-super-article.html" rel="bookmark" title="Permalink to This is a super article !">This is a super article !</a></h1>
<h1><a href="./this-is-a-super-article.html" rel="bookmark"
title="Permalink to This is a super article !">This is a super article !</a></h1>
</header>
<div class="entry-content">
@ -249,15 +249,15 @@ Translations:
</footer><!-- /.post-info -->
Multi-line metadata should be supported
as well as <strong>inline markup</strong>.
<p class="first last">Multi-line metadata should be supported
as well as <strong>inline markup</strong>.</p>
<a class="readmore" href="./this-is-a-super-article.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
@ -265,7 +265,8 @@ as well as <strong>inline markup</strong>.
<li><article class="hentry">
<header>
<h1><a href="./oh-yeah.html" rel="bookmark" title="Permalink to Oh yeah !">Oh yeah !</a></h1>
<h1><a href="./oh-yeah.html" rel="bookmark"
title="Permalink to Oh yeah !">Oh yeah !</a></h1>
</header>
<div class="entry-content">
@ -302,7 +303,6 @@ YEAH !</p>
</article></li>
@ -310,7 +310,8 @@ YEAH !</p>
<li><article class="hentry">
<header>
<h1><a href="./unbelievable.html" rel="bookmark" title="Permalink to Unbelievable !">Unbelievable !</a></h1>
<h1><a href="./unbelievable.html" rel="bookmark"
title="Permalink to Unbelievable !">Unbelievable !</a></h1>
</header>
<div class="entry-content">
@ -321,10 +322,10 @@ YEAH !</p>
<address class="vcard author">
By <a class="url fn" href="./author/bruno.html">bruno</a>
By <a class="url fn" href="./author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href="./category/content.html">content</a>. </p>
<p>In <a href="./category/misc.html">misc</a>. </p>
@ -337,10 +338,10 @@ YEAH !</p>
</article></li>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -31,33 +31,38 @@
<li class="active"><a href="./category/content.html">content</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li class="active"><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to Trop bien !">Trop bien !</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2012-03-02T14:01:01">
Fri 02 March 2012
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="oh-yeah-fr.html" rel="bookmark"
title="Permalink to Trop bien !">Trop bien !</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2012-05-19T23:55:50.764304">
Sat 19 May 2012
</abbr>
<address class="vcard author">
By <a class="url fn" href="./author/bruno.html">bruno</a>
By <a class="url fn" href="./author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href="./category/content.html">content</a>. </p>
<p>In <a href="./category/misc.html">misc</a>. </p>
@ -67,12 +72,12 @@ Translations:
</footer><!-- /.post-info -->
<p>Et voila du contenu en français</p>
<p>Et voila du contenu en français</p>
</div><!-- /.entry-content -->
</div><!-- /.entry-content -->
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -31,23 +31,28 @@
<li ><a href="./category/content.html">content</a></li>
<li class="active"><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/cat1.html">cat1</a></li>
<li class="active"><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to Oh yeah !">Oh yeah !</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="oh-yeah.html" rel="bookmark"
title="Permalink to Oh yeah !">Oh yeah !</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2010-10-20T10:14:00">
Wed 20 October 2010
</abbr>
@ -67,17 +72,17 @@ Translations:
</footer><!-- /.post-info -->
<div class="section" id="why-not">
<div class="section" id="why-not">
<h2>Why not ?</h2>
<p>After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst !
YEAH !</p>
<img alt="alternate text" src="static/pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
</div>
</div><!-- /.entry-content -->
</div><!-- /.entry-content -->
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -0,0 +1,70 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>This is a test hidden page</title>
<meta charset="utf-8" />
<link rel="stylesheet" href=".././theme/css/main.css" type="text/css" />
<link href="/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="A Pelican Blog Atom Feed" />
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<!--[if lte IE 7]>
<link rel="stylesheet" type="text/css" media="all" href=".././css/ie.css"/>
<script src=".././js/IE8.js" type="text/javascript"></script><![endif]-->
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" media="all" href=".././css/ie6.css"/><![endif]-->
</head>
<body id="index" class="home">
<header id="banner" class="body">
<h1><a href="../.">A Pelican Blog </a></h1>
<nav><ul>
<li><a href=".././pages/this-is-a-test-page.html">This is a test page</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<h1 class="entry-title">This is a test hidden page</h1>
<p>This is great for things like error(404) pages
Anyone can see this page but it's not linked to anywhere!</p>
</section>
<section id="extras" class="body">
</section><!-- /#extras -->
<footer id="contentinfo" class="body">
<address id="about" class="vcard body">
Proudly powered by <a href="http://pelican.notmyidea.org/">Pelican</a>, which takes great advantage of <a href="http://python.org">Python</a>.
</address><!-- /#about -->
<p>The theme is by <a href="http://coding.smashingmagazine.com/2009/08/04/designing-a-html-5-layout-from-scratch/">Smashing Magazine</a>, thanks!</p>
</footer><!-- /#contentinfo -->
</body>
</html>

View file

@ -31,11 +31,11 @@
<li ><a href=".././category/content.html">content</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>

View file

@ -31,33 +31,38 @@
<li class="active"><a href="./category/content.html">content</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li class="active"><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to Deuxième article">Deuxième article</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="second-article-fr.html" rel="bookmark"
title="Permalink to Deuxième article">Deuxième article</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2012-02-29T00:00:00">
Wed 29 February 2012
</abbr>
<address class="vcard author">
By <a class="url fn" href="./author/bruno.html">bruno</a>
By <a class="url fn" href="./author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href="./category/content.html">content</a>. </p>
<p>In <a href="./category/misc.html">misc</a>. </p>
<p>tags: <a href="./tag/foo.html">foo</a><a href="./tag/bar.html">bar</a><a href="./tag/baz.html">baz</a></p>
@ -67,12 +72,12 @@ Translations:
</footer><!-- /.post-info -->
<p>Ceci est un article, en français.</p>
<p>Ceci est un article, en français.</p>
</div><!-- /.entry-content -->
</div><!-- /.entry-content -->
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -31,33 +31,38 @@
<li class="active"><a href="./category/content.html">content</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li class="active"><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to Second article">Second article</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="second-article.html" rel="bookmark"
title="Permalink to Second article">Second article</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2012-02-29T00:00:00">
Wed 29 February 2012
</abbr>
<address class="vcard author">
By <a class="url fn" href="./author/bruno.html">bruno</a>
By <a class="url fn" href="./author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href="./category/content.html">content</a>. </p>
<p>In <a href="./category/misc.html">misc</a>. </p>
<p>tags: <a href="./tag/foo.html">foo</a><a href="./tag/bar.html">bar</a><a href="./tag/baz.html">baz</a></p>
@ -67,12 +72,12 @@ Translations:
</footer><!-- /.post-info -->
<p>This is some article, in english</p>
<p>This is some article, in english</p>
</div><!-- /.entry-content -->
</div><!-- /.entry-content -->
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -31,11 +31,11 @@
<li ><a href=".././category/content.html">content</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
@ -49,7 +49,7 @@
<aside id="featured" class="body">
<article>
<h1 class="entry-title"><a href=".././second-article-fr.html">Deuxième article</a></h1>
<h1 class="entry-title"><a href=".././second-article.html">Second article</a></h1>
<footer class="post-info">
<abbr class="published" title="2012-02-29T00:00:00">
Wed 29 February 2012
@ -57,19 +57,19 @@
<address class="vcard author">
By <a class="url fn" href=".././author/bruno.html">bruno</a>
By <a class="url fn" href=".././author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>
<p>In <a href=".././category/misc.html">misc</a>. </p>
<p>tags: <a href=".././tag/foo.html">foo</a><a href=".././tag/bar.html">bar</a><a href=".././tag/baz.html">baz</a></p>
Translations:
<a href=".././second-article.html">en</a>
<a href=".././second-article-fr.html">fr</a>
</footer><!-- /.post-info --><p>Ceci est un article, en français.</p>
</footer><!-- /.post-info --><p>This is some article, in english</p>
</article>
@ -83,7 +83,6 @@ Translations:
@ -91,7 +90,8 @@ Translations:
<li><article class="hentry">
<header>
<h1><a href=".././second-article.html" rel="bookmark" title="Permalink to Second article">Second article</a></h1>
<h1><a href=".././second-article-fr.html" rel="bookmark"
title="Permalink to Deuxième article">Deuxième article</a></h1>
</header>
<div class="entry-content">
@ -102,28 +102,27 @@ Translations:
<address class="vcard author">
By <a class="url fn" href=".././author/bruno.html">bruno</a>
By <a class="url fn" href=".././author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>
<p>In <a href=".././category/misc.html">misc</a>. </p>
<p>tags: <a href=".././tag/foo.html">foo</a><a href=".././tag/bar.html">bar</a><a href=".././tag/baz.html">baz</a></p>
Translations:
<a href=".././second-article-fr.html">fr</a>
<a href=".././second-article.html">en</a>
</footer><!-- /.post-info -->
<p>This is some article, in english</p>
<p>Ceci est un article, en français.</p>
<a class="readmore" href=".././second-article.html">read more</a>
<a class="readmore" href=".././second-article-fr.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
@ -131,7 +130,8 @@ Translations:
<li><article class="hentry">
<header>
<h1><a href=".././this-is-a-super-article.html" rel="bookmark" title="Permalink to This is a super article !">This is a super article !</a></h1>
<h1><a href=".././this-is-a-super-article.html" rel="bookmark"
title="Permalink to This is a super article !">This is a super article !</a></h1>
</header>
<div class="entry-content">
@ -150,15 +150,15 @@ Translations:
</footer><!-- /.post-info -->
Multi-line metadata should be supported
as well as <strong>inline markup</strong>.
<p class="first last">Multi-line metadata should be supported
as well as <strong>inline markup</strong>.</p>
<a class="readmore" href=".././this-is-a-super-article.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
@ -166,7 +166,8 @@ as well as <strong>inline markup</strong>.
<li><article class="hentry">
<header>
<h1><a href=".././oh-yeah.html" rel="bookmark" title="Permalink to Oh yeah !">Oh yeah !</a></h1>
<h1><a href=".././oh-yeah.html" rel="bookmark"
title="Permalink to Oh yeah !">Oh yeah !</a></h1>
</header>
<div class="entry-content">
@ -203,10 +204,10 @@ YEAH !</p>
</article></li>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -31,11 +31,11 @@
<li ><a href=".././category/content.html">content</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
@ -49,7 +49,7 @@
<aside id="featured" class="body">
<article>
<h1 class="entry-title"><a href=".././second-article-fr.html">Deuxième article</a></h1>
<h1 class="entry-title"><a href=".././second-article.html">Second article</a></h1>
<footer class="post-info">
<abbr class="published" title="2012-02-29T00:00:00">
Wed 29 February 2012
@ -57,19 +57,19 @@
<address class="vcard author">
By <a class="url fn" href=".././author/bruno.html">bruno</a>
By <a class="url fn" href=".././author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>
<p>In <a href=".././category/misc.html">misc</a>. </p>
<p>tags: <a href=".././tag/foo.html">foo</a><a href=".././tag/bar.html">bar</a><a href=".././tag/baz.html">baz</a></p>
Translations:
<a href=".././second-article.html">en</a>
<a href=".././second-article-fr.html">fr</a>
</footer><!-- /.post-info --><p>Ceci est un article, en français.</p>
</footer><!-- /.post-info --><p>This is some article, in english</p>
</article>
@ -83,7 +83,6 @@ Translations:
@ -91,7 +90,8 @@ Translations:
<li><article class="hentry">
<header>
<h1><a href=".././second-article.html" rel="bookmark" title="Permalink to Second article">Second article</a></h1>
<h1><a href=".././second-article-fr.html" rel="bookmark"
title="Permalink to Deuxième article">Deuxième article</a></h1>
</header>
<div class="entry-content">
@ -102,31 +102,31 @@ Translations:
<address class="vcard author">
By <a class="url fn" href=".././author/bruno.html">bruno</a>
By <a class="url fn" href=".././author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>
<p>In <a href=".././category/misc.html">misc</a>. </p>
<p>tags: <a href=".././tag/foo.html">foo</a><a href=".././tag/bar.html">bar</a><a href=".././tag/baz.html">baz</a></p>
Translations:
<a href=".././second-article-fr.html">fr</a>
<a href=".././second-article.html">en</a>
</footer><!-- /.post-info -->
<p>This is some article, in english</p>
<p>Ceci est un article, en français.</p>
<a class="readmore" href=".././second-article.html">read more</a>
<a class="readmore" href=".././second-article-fr.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -31,11 +31,11 @@
<li ><a href=".././category/content.html">content</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
@ -49,7 +49,7 @@
<aside id="featured" class="body">
<article>
<h1 class="entry-title"><a href=".././second-article-fr.html">Deuxième article</a></h1>
<h1 class="entry-title"><a href=".././second-article.html">Second article</a></h1>
<footer class="post-info">
<abbr class="published" title="2012-02-29T00:00:00">
Wed 29 February 2012
@ -57,19 +57,19 @@
<address class="vcard author">
By <a class="url fn" href=".././author/bruno.html">bruno</a>
By <a class="url fn" href=".././author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>
<p>In <a href=".././category/misc.html">misc</a>. </p>
<p>tags: <a href=".././tag/foo.html">foo</a><a href=".././tag/bar.html">bar</a><a href=".././tag/baz.html">baz</a></p>
Translations:
<a href=".././second-article.html">en</a>
<a href=".././second-article-fr.html">fr</a>
</footer><!-- /.post-info --><p>Ceci est un article, en français.</p>
</footer><!-- /.post-info --><p>This is some article, in english</p>
</article>
@ -83,7 +83,6 @@ Translations:
@ -91,7 +90,8 @@ Translations:
<li><article class="hentry">
<header>
<h1><a href=".././second-article.html" rel="bookmark" title="Permalink to Second article">Second article</a></h1>
<h1><a href=".././second-article-fr.html" rel="bookmark"
title="Permalink to Deuxième article">Deuxième article</a></h1>
</header>
<div class="entry-content">
@ -102,28 +102,27 @@ Translations:
<address class="vcard author">
By <a class="url fn" href=".././author/bruno.html">bruno</a>
By <a class="url fn" href=".././author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>
<p>In <a href=".././category/misc.html">misc</a>. </p>
<p>tags: <a href=".././tag/foo.html">foo</a><a href=".././tag/bar.html">bar</a><a href=".././tag/baz.html">baz</a></p>
Translations:
<a href=".././second-article-fr.html">fr</a>
<a href=".././second-article.html">en</a>
</footer><!-- /.post-info -->
<p>This is some article, in english</p>
<p>Ceci est un article, en français.</p>
<a class="readmore" href=".././second-article.html">read more</a>
<a class="readmore" href=".././second-article-fr.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
@ -131,7 +130,8 @@ Translations:
<li><article class="hentry">
<header>
<h1><a href=".././this-is-a-super-article.html" rel="bookmark" title="Permalink to This is a super article !">This is a super article !</a></h1>
<h1><a href=".././this-is-a-super-article.html" rel="bookmark"
title="Permalink to This is a super article !">This is a super article !</a></h1>
</header>
<div class="entry-content">
@ -150,18 +150,19 @@ Translations:
</footer><!-- /.post-info -->
Multi-line metadata should be supported
as well as <strong>inline markup</strong>.
<p class="first last">Multi-line metadata should be supported
as well as <strong>inline markup</strong>.</p>
<a class="readmore" href=".././this-is-a-super-article.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -31,11 +31,11 @@
<li ><a href=".././category/content.html">content</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
@ -86,8 +86,8 @@
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -31,11 +31,11 @@
<li ><a href=".././category/content.html">content</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
@ -85,8 +85,8 @@ YEAH !</p>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -31,11 +31,11 @@
<li ><a href=".././category/content.html">content</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
@ -85,8 +85,8 @@ YEAH !</p>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -111,6 +111,13 @@ cite {}
q {}
div.note {
float: right;
margin: 5px;
font-size: 85%;
max-width: 300px;
}
/* Tables */
table {margin: .5em auto 1.5em auto; width: 98%;}
@ -305,6 +312,7 @@ img.left, figure.left {float: right; margin: 0 0 2em 2em;}
.social a[type$='atom+xml'], .social a[type$='rss+xml'] {background-image: url('../images/icons/rss.png');}
.social a[href*='twitter.com'] {background-image: url('../images/icons/twitter.png');}
.social a[href*='linkedin.com'] {background-image: url('../images/icons/linkedin.png');}
.social a[href*='gitorious.org'] {background-image: url('../images/icons/gitorious.org');}
/*
About

View file

@ -4,13 +4,17 @@ body {
font:1.3em/1.3 "Hoefler Text","Georgia",Georgia,serif,sans-serif;
}
.body, #banner nav, #banner nav ul, #about, #featured, #content{
width: inherit;
.post-info{
display: none;
}
#banner nav {
display: none;
-moz-border-radius: 0px;
margin-bottom: 0px;
margin-bottom: 20px;
overflow: hidden;
font-size: 1em;
background: #F5F4EF;
}
#banner nav ul{
@ -19,10 +23,11 @@ body {
#banner nav li{
float: right;
color: #000;
}
#banner nav li:first-child a {
-moz-border-radius: 0px;
#banner nav li a {
color: #000;
}
#banner h1 {

Binary file not shown.

After

Width:  |  Height:  |  Size: 300 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

View file

@ -31,23 +31,28 @@
<li ><a href="./category/content.html">content</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/misc.html">misc</a></li>
<li class="active"><a href="./category/yeah.html">yeah</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to This is a super article !">This is a super article !</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="this-is-a-super-article.html" rel="bookmark"
title="Permalink to This is a super article !">This is a super article !</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2010-12-02T10:14:00">
Thu 02 December 2010
</abbr>
@ -62,7 +67,7 @@
</footer><!-- /.post-info -->
<p>Some content here !</p>
<p>Some content here !</p>
<div class="section" id="this-is-a-simple-title">
<h2>This is a simple title</h2>
<p>And here comes the cool <a class="reference external" href="http://books.couchdb.org/relax/design-documents/views">stuff</a>.</p>
@ -75,10 +80,10 @@
<p>→ And now try with some utf8 hell: ééé</p>
</div>
</div><!-- /.entry-content -->
</div><!-- /.entry-content -->
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -31,43 +31,48 @@
<li class="active"><a href="./category/content.html">content</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li class="active"><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to Unbelievable !">Unbelievable !</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="unbelievable.html" rel="bookmark"
title="Permalink to Unbelievable !">Unbelievable !</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2010-10-15T20:30:00">
Fri 15 October 2010
</abbr>
<address class="vcard author">
By <a class="url fn" href="./author/bruno.html">bruno</a>
By <a class="url fn" href="./author/dummy-author.html">Dummy Author</a>
</address>
<p>In <a href="./category/content.html">content</a>. </p>
<p>In <a href="./category/misc.html">misc</a>. </p>
</footer><!-- /.post-info -->
<p>Or completely awesome. Depends the needs.</p>
<p>Or completely awesome. Depends the needs.</p>
</div><!-- /.entry-content -->
</div><!-- /.entry-content -->
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -39,23 +39,28 @@
<li ><a href="./category/yeah.html">yeah</a></li>
<li ><a href="./category/misc.html">misc</a></li>
<li class="active"><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
<li ><a href="./category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to A markdown powered article">A markdown powered article</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="a-markdown-powered-article.html" rel="bookmark"
title="Permalink to A markdown powered article">A markdown powered article</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2011-04-20T00:00:00">
Wed 20 April 2011
</abbr>
@ -70,24 +75,24 @@
</footer><!-- /.post-info -->
<p>You're mutually oblivious.</p>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "a-markdown-powered-article.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
<p>You're mutually oblivious.</p>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "a-markdown-powered-article.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -39,14 +39,14 @@
<li ><a href="./category/yeah.html">yeah</a></li>
<li ><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
<li ><a href="./category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
@ -56,28 +56,28 @@
<dl>
<dt>Fri 15 October 2010</dt>
<dd><a href="unbelievable.html">Unbelievable !</a></dd>
<dd><a href="./unbelievable.html">Unbelievable !</a></dd>
<dt>Wed 20 October 2010</dt>
<dd><a href="oh-yeah.html">Oh yeah !</a></dd>
<dd><a href="./oh-yeah.html">Oh yeah !</a></dd>
<dt>Thu 02 December 2010</dt>
<dd><a href="this-is-a-super-article.html">This is a super article !</a></dd>
<dd><a href="./this-is-a-super-article.html">This is a super article !</a></dd>
<dt>Thu 17 February 2011</dt>
<dd><a href="article-1.html">Article 1</a></dd>
<dd><a href="./article-1.html">Article 1</a></dd>
<dt>Thu 17 February 2011</dt>
<dd><a href="article-2.html">Article 2</a></dd>
<dd><a href="./article-2.html">Article 2</a></dd>
<dt>Thu 17 February 2011</dt>
<dd><a href="article-3.html">Article 3</a></dd>
<dd><a href="./article-3.html">Article 3</a></dd>
<dt>Wed 20 April 2011</dt>
<dd><a href="a-markdown-powered-article.html">A markdown powered article</a></dd>
<dd><a href="./a-markdown-powered-article.html">A markdown powered article</a></dd>
<dt>Wed 29 February 2012</dt>
<dd><a href="second-article.html">Second article</a></dd>
<dd><a href="./second-article.html">Second article</a></dd>
</dl>
</section>

View file

@ -39,23 +39,28 @@
<li ><a href="./category/yeah.html">yeah</a></li>
<li ><a href="./category/misc.html">misc</a></li>
<li class="active"><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
<li ><a href="./category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to Article 1">Article 1</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="article-1.html" rel="bookmark"
title="Permalink to Article 1">Article 1</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2011-02-17T00:00:00">
Thu 17 February 2011
</abbr>
@ -70,25 +75,25 @@
</footer><!-- /.post-info -->
<p>Article 1</p>
<p>Article 1</p>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "article-1.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "article-1.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -39,23 +39,28 @@
<li ><a href="./category/yeah.html">yeah</a></li>
<li ><a href="./category/misc.html">misc</a></li>
<li class="active"><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
<li ><a href="./category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to Article 2">Article 2</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="article-2.html" rel="bookmark"
title="Permalink to Article 2">Article 2</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2011-02-17T00:00:00">
Thu 17 February 2011
</abbr>
@ -70,25 +75,25 @@
</footer><!-- /.post-info -->
<p>Article 2</p>
<p>Article 2</p>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "article-2.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "article-2.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -39,23 +39,28 @@
<li ><a href="./category/yeah.html">yeah</a></li>
<li ><a href="./category/misc.html">misc</a></li>
<li class="active"><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
<li ><a href="./category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to Article 3">Article 3</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="article-3.html" rel="bookmark"
title="Permalink to Article 3">Article 3</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2011-02-17T00:00:00">
Thu 17 February 2011
</abbr>
@ -70,25 +75,25 @@
</footer><!-- /.post-info -->
<p>Article 3</p>
<p>Article 3</p>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "article-3.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "article-3.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -39,14 +39,14 @@
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
@ -85,7 +85,6 @@
@ -93,7 +92,8 @@
<li><article class="hentry">
<header>
<h1><a href=".././article-1.html" rel="bookmark" title="Permalink to Article 1">Article 1</a></h1>
<h1><a href=".././article-1.html" rel="bookmark"
title="Permalink to Article 1">Article 1</a></h1>
</header>
<div class="entry-content">
@ -120,7 +120,6 @@
</article></li>
@ -128,7 +127,8 @@
<li><article class="hentry">
<header>
<h1><a href=".././article-2.html" rel="bookmark" title="Permalink to Article 2">Article 2</a></h1>
<h1><a href=".././article-2.html" rel="bookmark"
title="Permalink to Article 2">Article 2</a></h1>
</header>
<div class="entry-content">
@ -155,7 +155,6 @@
</article></li>
@ -163,7 +162,8 @@
<li><article class="hentry">
<header>
<h1><a href=".././article-3.html" rel="bookmark" title="Permalink to Article 3">Article 3</a></h1>
<h1><a href=".././article-3.html" rel="bookmark"
title="Permalink to Article 3">Article 3</a></h1>
</header>
<div class="entry-content">
@ -190,7 +190,9 @@
</article></li>
</ol><!-- /#posts-list -->
<p class="paginator">
Page 1 / 2
@ -199,9 +201,7 @@
</p>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -39,14 +39,14 @@
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
@ -61,7 +61,8 @@
<li><article class="hentry">
<header>
<h1><a href=".././oh-yeah.html" rel="bookmark" title="Permalink to Oh yeah !">Oh yeah !</a></h1>
<h1><a href=".././oh-yeah.html" rel="bookmark"
title="Permalink to Oh yeah !">Oh yeah !</a></h1>
</header>
<div class="entry-content">
@ -98,7 +99,6 @@ YEAH !</p>
</article></li>
@ -106,7 +106,8 @@ YEAH !</p>
<li><article class="hentry">
<header>
<h1><a href=".././second-article.html" rel="bookmark" title="Permalink to Second article">Second article</a></h1>
<h1><a href=".././second-article.html" rel="bookmark"
title="Permalink to Second article">Second article</a></h1>
</header>
<div class="entry-content">
@ -120,7 +121,7 @@ YEAH !</p>
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>
<p>In <a href=".././category/misc.html">misc</a>. </p>
<p>tags: <a href=".././tag/foo.html">foo</a><a href=".././tag/bar.html">bar</a><a href=".././tag/baz.html">baz</a></p>
@ -138,7 +139,6 @@ Translations:
</article></li>
@ -146,7 +146,8 @@ Translations:
<li><article class="hentry">
<header>
<h1><a href=".././this-is-a-super-article.html" rel="bookmark" title="Permalink to This is a super article !">This is a super article !</a></h1>
<h1><a href=".././this-is-a-super-article.html" rel="bookmark"
title="Permalink to This is a super article !">This is a super article !</a></h1>
</header>
<div class="entry-content">
@ -165,15 +166,15 @@ Translations:
</footer><!-- /.post-info -->
Multi-line metadata should be supported
as well as <strong>inline markup</strong>.
<p class="first last">Multi-line metadata should be supported
as well as <strong>inline markup</strong>.</p>
<a class="readmore" href=".././this-is-a-super-article.html">read more</a>
<p>There are <a href=".././this-is-a-super-article.html#disqus_thread">comments</a>.</p>
</div><!-- /.entry-content -->
</article></li>
@ -181,7 +182,8 @@ as well as <strong>inline markup</strong>.
<li><article class="hentry">
<header>
<h1><a href=".././unbelievable.html" rel="bookmark" title="Permalink to Unbelievable !">Unbelievable !</a></h1>
<h1><a href=".././unbelievable.html" rel="bookmark"
title="Permalink to Unbelievable !">Unbelievable !</a></h1>
</header>
<div class="entry-content">
@ -195,7 +197,7 @@ as well as <strong>inline markup</strong>.
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>
<p>In <a href=".././category/misc.html">misc</a>. </p>
@ -208,7 +210,9 @@ as well as <strong>inline markup</strong>.
</article></li>
</ol><!-- /#posts-list -->
<p class="paginator">
@ -219,9 +223,7 @@ as well as <strong>inline markup</strong>.
</p>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -39,26 +39,26 @@
<li ><a href="./category/yeah.html">yeah</a></li>
<li ><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
<li ><a href="./category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
<ul>
<li><a href="category/cat1.html">cat1</a></li>
<li><a href="./category/yeah.html">yeah</a></li>
<li><a href="category/bar.html">bar</a></li>
<li><a href="./category/misc.html">misc</a></li>
<li><a href="category/yeah.html">yeah</a></li>
<li><a href="./category/cat1.html">cat1</a></li>
<li><a href="category/content.html">content</a></li>
<li><a href="./category/bar.html">bar</a></li>
</ul>

View file

@ -39,14 +39,14 @@
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li class="active"><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
@ -99,8 +99,8 @@ YEAH !</p>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -39,14 +39,14 @@
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li class="active"><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
@ -85,7 +85,6 @@
@ -93,7 +92,8 @@
<li><article class="hentry">
<header>
<h1><a href=".././article-1.html" rel="bookmark" title="Permalink to Article 1">Article 1</a></h1>
<h1><a href=".././article-1.html" rel="bookmark"
title="Permalink to Article 1">Article 1</a></h1>
</header>
<div class="entry-content">
@ -120,7 +120,6 @@
</article></li>
@ -128,7 +127,8 @@
<li><article class="hentry">
<header>
<h1><a href=".././article-2.html" rel="bookmark" title="Permalink to Article 2">Article 2</a></h1>
<h1><a href=".././article-2.html" rel="bookmark"
title="Permalink to Article 2">Article 2</a></h1>
</header>
<div class="entry-content">
@ -155,7 +155,6 @@
</article></li>
@ -163,7 +162,8 @@
<li><article class="hentry">
<header>
<h1><a href=".././article-3.html" rel="bookmark" title="Permalink to Article 3">Article 3</a></h1>
<h1><a href=".././article-3.html" rel="bookmark"
title="Permalink to Article 3">Article 3</a></h1>
</header>
<div class="entry-content">
@ -190,16 +190,16 @@
</article></li>
</ol><!-- /#posts-list -->
<p class="paginator">
Page 1 / 1
</p>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Alexis' log - content</title>
<title>Alexis' log - misc</title>
<meta charset="utf-8" />
<link rel="stylesheet" href=".././theme/css/main.css" type="text/css" />
<link href="http://blog.notmyidea.org/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Alexis' log Atom Feed" />
@ -39,14 +39,14 @@
<li ><a href=".././category/yeah.html">yeah</a></li>
<li class="active"><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
<li class="active"><a href=".././category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
@ -68,7 +68,7 @@
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>
<p>In <a href=".././category/misc.html">misc</a>. </p>
<p>tags: <a href=".././tag/foo.html">foo</a><a href=".././tag/bar.html">bar</a><a href=".././tag/baz.html">baz</a></p>
@ -91,7 +91,6 @@ Translations:
@ -99,7 +98,8 @@ Translations:
<li><article class="hentry">
<header>
<h1><a href=".././unbelievable.html" rel="bookmark" title="Permalink to Unbelievable !">Unbelievable !</a></h1>
<h1><a href=".././unbelievable.html" rel="bookmark"
title="Permalink to Unbelievable !">Unbelievable !</a></h1>
</header>
<div class="entry-content">
@ -113,7 +113,7 @@ Translations:
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>
<p>In <a href=".././category/misc.html">misc</a>. </p>
@ -126,16 +126,16 @@ Translations:
</article></li>
</ol><!-- /#posts-list -->
<p class="paginator">
Page 1 / 1
</p>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -39,14 +39,14 @@
<li class="active"><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li class="active"><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
@ -100,8 +100,8 @@
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -39,23 +39,28 @@
<li ><a href=".././category/yeah.html">yeah</a></li>
<li class="active"><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
<li class="active"><a href=".././category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to A draft article">A draft article</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="a-draft-article.html" rel="bookmark"
title="Permalink to A draft article">A draft article</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2012-03-02T14:01:01">
Fri 02 March 2012
</abbr>
@ -65,31 +70,31 @@
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>
<p>In <a href=".././category/misc.html">misc</a>. </p>
</footer><!-- /.post-info -->
<p>This is a draft article, it should live under the /drafts/ folder and not be
<p>This is a draft article, it should live under the /drafts/ folder and not be
listed anywhere else.</p>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "a-draft-article.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "a-draft-article.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/all-en.atom.xml" rel="self"></link><id>http://blog.notmyidea.org</id><updated>2012-02-29T00:00:00+01:00</updated><entry><title>Second article</title><link href="http://blog.notmyidea.org/second-article.html" rel="alternate"></link><updated>2012-02-29T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/second-article.html</id><summary type="html">&lt;p&gt;This is some article, in english&lt;/p&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry><entry><title>A markdown powered article</title><link href="http://blog.notmyidea.org/a-markdown-powered-article.html" rel="alternate"></link><updated>2011-04-20T00:00:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/a-markdown-powered-article.html</id><summary type="html">&lt;p&gt;You're mutually oblivious.&lt;/p&gt;</summary></entry><entry><title>Article 1</title><link href="http://blog.notmyidea.org/article-1.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/article-1.html</id><summary type="html">&lt;p&gt;Article 1&lt;/p&gt;
</summary></entry><entry><title>Article 2</title><link href="http://blog.notmyidea.org/article-2.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/article-2.html</id><summary type="html">&lt;p&gt;Article 2&lt;/p&gt;
</summary></entry><entry><title>Article 3</title><link href="http://blog.notmyidea.org/article-3.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/article-3.html</id><summary type="html">&lt;p&gt;Article 3&lt;/p&gt;
</summary></entry><entry><title>This is a super article !</title><link href="http://blog.notmyidea.org/this-is-a-super-article.html" rel="alternate"></link><updated>2010-12-02T10:14:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/this-is-a-super-article.html</id><summary type="html">&lt;p&gt;Some content here !&lt;/p&gt;
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org/" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/all-en.atom.xml" rel="self"></link><id>http://blog.notmyidea.org/</id><updated>2012-02-29T00:00:00+01:00</updated><entry><title>Second article</title><link href="http://blog.notmyidea.org/second-article.html" rel="alternate"></link><updated>2012-02-29T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-02-29:second-article.html</id><summary type="html">&lt;p&gt;This is some article, in english&lt;/p&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry><entry><title>A markdown powered article</title><link href="http://blog.notmyidea.org/a-markdown-powered-article.html" rel="alternate"></link><updated>2011-04-20T00:00:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-04-20:a-markdown-powered-article.html</id><summary type="html">&lt;p&gt;You're mutually oblivious.&lt;/p&gt;</summary></entry><entry><title>Article 1</title><link href="http://blog.notmyidea.org/article-1.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-1.html</id><summary type="html">&lt;p&gt;Article 1&lt;/p&gt;
</summary></entry><entry><title>Article 2</title><link href="http://blog.notmyidea.org/article-2.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-2.html</id><summary type="html">&lt;p&gt;Article 2&lt;/p&gt;
</summary></entry><entry><title>Article 3</title><link href="http://blog.notmyidea.org/article-3.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-3.html</id><summary type="html">&lt;p&gt;Article 3&lt;/p&gt;
</summary></entry><entry><title>This is a super article !</title><link href="http://blog.notmyidea.org/this-is-a-super-article.html" rel="alternate"></link><updated>2010-12-02T10:14:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-12-02:this-is-a-super-article.html</id><summary type="html">&lt;p&gt;Some content here !&lt;/p&gt;
&lt;div class="section" id="this-is-a-simple-title"&gt;
&lt;h2&gt;This is a simple title&lt;/h2&gt;
&lt;p&gt;And here comes the cool &lt;a class="reference external" href="http://books.couchdb.org/relax/design-documents/views"&gt;stuff&lt;/a&gt;.&lt;/p&gt;
@ -15,11 +15,11 @@
&lt;/pre&gt;
&lt;p&gt;→ And now try with some utf8 hell: ééé&lt;/p&gt;
&lt;/div&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="foobar"></category></entry><entry><title>Oh yeah !</title><link href="http://blog.notmyidea.org/oh-yeah.html" rel="alternate"></link><updated>2010-10-20T10:14:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/oh-yeah.html</id><summary type="html">&lt;div class="section" id="why-not"&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="foobar"></category></entry><entry><title>Oh yeah !</title><link href="http://blog.notmyidea.org/oh-yeah.html" rel="alternate"></link><updated>2010-10-20T10:14:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-10-20:oh-yeah.html</id><summary type="html">&lt;div class="section" id="why-not"&gt;
&lt;h2&gt;Why not ?&lt;/h2&gt;
&lt;p&gt;After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst !
YEAH !&lt;/p&gt;
&lt;img alt="alternate text" src="pictures/Sushi.jpg" style="width: 600px; height: 450px;" /&gt;
&lt;/div&gt;
</summary><category term="oh"></category><category term="bar"></category><category term="yeah"></category></entry><entry><title>Unbelievable !</title><link href="http://blog.notmyidea.org/unbelievable.html" rel="alternate"></link><updated>2010-10-15T20:30:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/unbelievable.html</id><summary type="html">&lt;p&gt;Or completely awesome. Depends the needs.&lt;/p&gt;
</summary><category term="oh"></category><category term="bar"></category><category term="yeah"></category></entry><entry><title>Unbelievable !</title><link href="http://blog.notmyidea.org/unbelievable.html" rel="alternate"></link><updated>2010-10-15T20:30:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-10-15:unbelievable.html</id><summary type="html">&lt;p&gt;Or completely awesome. Depends the needs.&lt;/p&gt;
</summary></entry></feed>

View file

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/all-fr.atom.xml" rel="self"></link><id>http://blog.notmyidea.org</id><updated>2012-03-02T14:01:01+01:00</updated><entry><title>Trop bien !</title><link href="http://blog.notmyidea.org/oh-yeah-fr.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/oh-yeah-fr.html</id><summary type="html">&lt;p&gt;Et voila du contenu en français&lt;/p&gt;
</summary></entry><entry><title>Deuxième article</title><link href="http://blog.notmyidea.org/second-article-fr.html" rel="alternate"></link><updated>2012-02-29T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/second-article-fr.html</id><summary type="html">&lt;p&gt;Ceci est un article, en français.&lt;/p&gt;
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org/" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/all-fr.atom.xml" rel="self"></link><id>http://blog.notmyidea.org/</id><updated>2012-03-02T14:01:01+01:00</updated><entry><title>Trop bien !</title><link href="http://blog.notmyidea.org/oh-yeah-fr.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-03-02:oh-yeah-fr.html</id><summary type="html">&lt;p&gt;Et voila du contenu en français&lt;/p&gt;
</summary></entry><entry><title>Deuxième article</title><link href="http://blog.notmyidea.org/second-article-fr.html" rel="alternate"></link><updated>2012-02-29T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-02-29:second-article-fr.html</id><summary type="html">&lt;p&gt;Ceci est un article, en français.&lt;/p&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry></feed>

View file

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/all.atom.xml" rel="self"></link><id>http://blog.notmyidea.org</id><updated>2012-02-29T00:00:00+01:00</updated><entry><title>Second article</title><link href="http://blog.notmyidea.org/second-article.html" rel="alternate"></link><updated>2012-02-29T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/second-article.html</id><summary type="html">&lt;p&gt;This is some article, in english&lt;/p&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry><entry><title>A markdown powered article</title><link href="http://blog.notmyidea.org/a-markdown-powered-article.html" rel="alternate"></link><updated>2011-04-20T00:00:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/a-markdown-powered-article.html</id><summary type="html">&lt;p&gt;You're mutually oblivious.&lt;/p&gt;</summary></entry><entry><title>Article 1</title><link href="http://blog.notmyidea.org/article-1.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/article-1.html</id><summary type="html">&lt;p&gt;Article 1&lt;/p&gt;
</summary></entry><entry><title>Article 2</title><link href="http://blog.notmyidea.org/article-2.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/article-2.html</id><summary type="html">&lt;p&gt;Article 2&lt;/p&gt;
</summary></entry><entry><title>Article 3</title><link href="http://blog.notmyidea.org/article-3.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/article-3.html</id><summary type="html">&lt;p&gt;Article 3&lt;/p&gt;
</summary></entry><entry><title>This is a super article !</title><link href="http://blog.notmyidea.org/this-is-a-super-article.html" rel="alternate"></link><updated>2010-12-02T10:14:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/this-is-a-super-article.html</id><summary type="html">&lt;p&gt;Some content here !&lt;/p&gt;
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org/" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/all.atom.xml" rel="self"></link><id>http://blog.notmyidea.org/</id><updated>2012-02-29T00:00:00+01:00</updated><entry><title>Second article</title><link href="http://blog.notmyidea.org/second-article.html" rel="alternate"></link><updated>2012-02-29T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-02-29:second-article.html</id><summary type="html">&lt;p&gt;This is some article, in english&lt;/p&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry><entry><title>A markdown powered article</title><link href="http://blog.notmyidea.org/a-markdown-powered-article.html" rel="alternate"></link><updated>2011-04-20T00:00:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-04-20:a-markdown-powered-article.html</id><summary type="html">&lt;p&gt;You're mutually oblivious.&lt;/p&gt;</summary></entry><entry><title>Article 1</title><link href="http://blog.notmyidea.org/article-1.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-1.html</id><summary type="html">&lt;p&gt;Article 1&lt;/p&gt;
</summary></entry><entry><title>Article 2</title><link href="http://blog.notmyidea.org/article-2.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-2.html</id><summary type="html">&lt;p&gt;Article 2&lt;/p&gt;
</summary></entry><entry><title>Article 3</title><link href="http://blog.notmyidea.org/article-3.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-3.html</id><summary type="html">&lt;p&gt;Article 3&lt;/p&gt;
</summary></entry><entry><title>This is a super article !</title><link href="http://blog.notmyidea.org/this-is-a-super-article.html" rel="alternate"></link><updated>2010-12-02T10:14:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-12-02:this-is-a-super-article.html</id><summary type="html">&lt;p&gt;Some content here !&lt;/p&gt;
&lt;div class="section" id="this-is-a-simple-title"&gt;
&lt;h2&gt;This is a simple title&lt;/h2&gt;
&lt;p&gt;And here comes the cool &lt;a class="reference external" href="http://books.couchdb.org/relax/design-documents/views"&gt;stuff&lt;/a&gt;.&lt;/p&gt;
@ -15,11 +15,11 @@
&lt;/pre&gt;
&lt;p&gt;→ And now try with some utf8 hell: ééé&lt;/p&gt;
&lt;/div&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="foobar"></category></entry><entry><title>Oh yeah !</title><link href="http://blog.notmyidea.org/oh-yeah.html" rel="alternate"></link><updated>2010-10-20T10:14:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/oh-yeah.html</id><summary type="html">&lt;div class="section" id="why-not"&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="foobar"></category></entry><entry><title>Oh yeah !</title><link href="http://blog.notmyidea.org/oh-yeah.html" rel="alternate"></link><updated>2010-10-20T10:14:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-10-20:oh-yeah.html</id><summary type="html">&lt;div class="section" id="why-not"&gt;
&lt;h2&gt;Why not ?&lt;/h2&gt;
&lt;p&gt;After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst !
YEAH !&lt;/p&gt;
&lt;img alt="alternate text" src="pictures/Sushi.jpg" style="width: 600px; height: 450px;" /&gt;
&lt;/div&gt;
</summary><category term="oh"></category><category term="bar"></category><category term="yeah"></category></entry><entry><title>Unbelievable !</title><link href="http://blog.notmyidea.org/unbelievable.html" rel="alternate"></link><updated>2010-10-15T20:30:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/unbelievable.html</id><summary type="html">&lt;p&gt;Or completely awesome. Depends the needs.&lt;/p&gt;
</summary><category term="oh"></category><category term="bar"></category><category term="yeah"></category></entry><entry><title>Unbelievable !</title><link href="http://blog.notmyidea.org/unbelievable.html" rel="alternate"></link><updated>2010-10-15T20:30:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-10-15:unbelievable.html</id><summary type="html">&lt;p&gt;Or completely awesome. Depends the needs.&lt;/p&gt;
</summary></entry></feed>

View file

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Alexis' log</title><link>http://blog.notmyidea.org</link><description></description><atom:link href="http://blog.notmyidea.org/feeds/all.rss.xml" rel="self"></atom:link><lastBuildDate>Wed, 29 Feb 2012 00:00:00 +0100</lastBuildDate><item><title>Second article</title><link>http://blog.notmyidea.org/second-article.html</link><description>&lt;p&gt;This is some article, in english&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Wed, 29 Feb 2012 00:00:00 +0100</pubDate><guid>http://blog.notmyidea.org/second-article.html</guid><category>foo</category><category>bar</category><category>baz</category></item><item><title>A markdown powered article</title><link>http://blog.notmyidea.org/a-markdown-powered-article.html</link><description>&lt;p&gt;You're mutually oblivious.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Wed, 20 Apr 2011 00:00:00 +0200</pubDate><guid>http://blog.notmyidea.org/a-markdown-powered-article.html</guid></item><item><title>Article 1</title><link>http://blog.notmyidea.org/article-1.html</link><description>&lt;p&gt;Article 1&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 17 Feb 2011 00:00:00 +0100</pubDate><guid>http://blog.notmyidea.org/article-1.html</guid></item><item><title>Article 2</title><link>http://blog.notmyidea.org/article-2.html</link><description>&lt;p&gt;Article 2&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 17 Feb 2011 00:00:00 +0100</pubDate><guid>http://blog.notmyidea.org/article-2.html</guid></item><item><title>Article 3</title><link>http://blog.notmyidea.org/article-3.html</link><description>&lt;p&gt;Article 3&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 17 Feb 2011 00:00:00 +0100</pubDate><guid>http://blog.notmyidea.org/article-3.html</guid></item><item><title>This is a super article !</title><link>http://blog.notmyidea.org/this-is-a-super-article.html</link><description>&lt;p&gt;Some content here !&lt;/p&gt;
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Alexis' log</title><link>http://blog.notmyidea.org/</link><description></description><atom:link href="http://blog.notmyidea.org/feeds/all.rss.xml" rel="self"></atom:link><lastBuildDate>Wed, 29 Feb 2012 00:00:00 +0100</lastBuildDate><item><title>Second article</title><link>http://blog.notmyidea.org/second-article.html</link><description>&lt;p&gt;This is some article, in english&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Wed, 29 Feb 2012 00:00:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2012-02-29:second-article.html</guid><category>foo</category><category>bar</category><category>baz</category></item><item><title>A markdown powered article</title><link>http://blog.notmyidea.org/a-markdown-powered-article.html</link><description>&lt;p&gt;You're mutually oblivious.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Wed, 20 Apr 2011 00:00:00 +0200</pubDate><guid>tag:blog.notmyidea.org,2011-04-20:a-markdown-powered-article.html</guid></item><item><title>Article 1</title><link>http://blog.notmyidea.org/article-1.html</link><description>&lt;p&gt;Article 1&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 17 Feb 2011 00:00:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2011-02-17:article-1.html</guid></item><item><title>Article 2</title><link>http://blog.notmyidea.org/article-2.html</link><description>&lt;p&gt;Article 2&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 17 Feb 2011 00:00:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2011-02-17:article-2.html</guid></item><item><title>Article 3</title><link>http://blog.notmyidea.org/article-3.html</link><description>&lt;p&gt;Article 3&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 17 Feb 2011 00:00:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2011-02-17:article-3.html</guid></item><item><title>This is a super article !</title><link>http://blog.notmyidea.org/this-is-a-super-article.html</link><description>&lt;p&gt;Some content here !&lt;/p&gt;
&lt;div class="section" id="this-is-a-simple-title"&gt;
&lt;h2&gt;This is a simple title&lt;/h2&gt;
&lt;p&gt;And here comes the cool &lt;a class="reference external" href="http://books.couchdb.org/relax/design-documents/views"&gt;stuff&lt;/a&gt;.&lt;/p&gt;
@ -15,11 +15,11 @@
&lt;/pre&gt;
&lt;p&gt;→ And now try with some utf8 hell: ééé&lt;/p&gt;
&lt;/div&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 02 Dec 2010 10:14:00 +0100</pubDate><guid>http://blog.notmyidea.org/this-is-a-super-article.html</guid><category>foo</category><category>bar</category><category>foobar</category></item><item><title>Oh yeah !</title><link>http://blog.notmyidea.org/oh-yeah.html</link><description>&lt;div class="section" id="why-not"&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 02 Dec 2010 10:14:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2010-12-02:this-is-a-super-article.html</guid><category>foo</category><category>bar</category><category>foobar</category></item><item><title>Oh yeah !</title><link>http://blog.notmyidea.org/oh-yeah.html</link><description>&lt;div class="section" id="why-not"&gt;
&lt;h2&gt;Why not ?&lt;/h2&gt;
&lt;p&gt;After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst !
YEAH !&lt;/p&gt;
&lt;img alt="alternate text" src="pictures/Sushi.jpg" style="width: 600px; height: 450px;" /&gt;
&lt;/div&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Wed, 20 Oct 2010 10:14:00 +0200</pubDate><guid>http://blog.notmyidea.org/oh-yeah.html</guid><category>oh</category><category>bar</category><category>yeah</category></item><item><title>Unbelievable !</title><link>http://blog.notmyidea.org/unbelievable.html</link><description>&lt;p&gt;Or completely awesome. Depends the needs.&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 15 Oct 2010 20:30:00 +0200</pubDate><guid>http://blog.notmyidea.org/unbelievable.html</guid></item></channel></rss>
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Wed, 20 Oct 2010 10:14:00 +0200</pubDate><guid>tag:blog.notmyidea.org,2010-10-20:oh-yeah.html</guid><category>oh</category><category>bar</category><category>yeah</category></item><item><title>Unbelievable !</title><link>http://blog.notmyidea.org/unbelievable.html</link><description>&lt;p&gt;Or completely awesome. Depends the needs.&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 15 Oct 2010 20:30:00 +0200</pubDate><guid>tag:blog.notmyidea.org,2010-10-15:unbelievable.html</guid></item></channel></rss>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/bar.atom.xml" rel="self"></link><id>http://blog.notmyidea.org</id><updated>2010-10-20T10:14:00+02:00</updated><entry><title>Oh yeah !</title><link href="http://blog.notmyidea.org/oh-yeah.html" rel="alternate"></link><updated>2010-10-20T10:14:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/oh-yeah.html</id><summary type="html">&lt;div class="section" id="why-not"&gt;
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org/" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/bar.atom.xml" rel="self"></link><id>http://blog.notmyidea.org/</id><updated>2010-10-20T10:14:00+02:00</updated><entry><title>Oh yeah !</title><link href="http://blog.notmyidea.org/oh-yeah.html" rel="alternate"></link><updated>2010-10-20T10:14:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-10-20:oh-yeah.html</id><summary type="html">&lt;div class="section" id="why-not"&gt;
&lt;h2&gt;Why not ?&lt;/h2&gt;
&lt;p&gt;After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst !
YEAH !&lt;/p&gt;

View file

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Alexis' log</title><link>http://blog.notmyidea.org</link><description></description><atom:link href="http://blog.notmyidea.org/feeds/bar.rss.xml" rel="self"></atom:link><lastBuildDate>Wed, 20 Oct 2010 10:14:00 +0200</lastBuildDate><item><title>Oh yeah !</title><link>http://blog.notmyidea.org/oh-yeah.html</link><description>&lt;div class="section" id="why-not"&gt;
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Alexis' log</title><link>http://blog.notmyidea.org/</link><description></description><atom:link href="http://blog.notmyidea.org/feeds/bar.rss.xml" rel="self"></atom:link><lastBuildDate>Wed, 20 Oct 2010 10:14:00 +0200</lastBuildDate><item><title>Oh yeah !</title><link>http://blog.notmyidea.org/oh-yeah.html</link><description>&lt;div class="section" id="why-not"&gt;
&lt;h2&gt;Why not ?&lt;/h2&gt;
&lt;p&gt;After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst !
YEAH !&lt;/p&gt;
&lt;img alt="alternate text" src="pictures/Sushi.jpg" style="width: 600px; height: 450px;" /&gt;
&lt;/div&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Wed, 20 Oct 2010 10:14:00 +0200</pubDate><guid>http://blog.notmyidea.org/oh-yeah.html</guid><category>oh</category><category>bar</category><category>yeah</category></item></channel></rss>
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Wed, 20 Oct 2010 10:14:00 +0200</pubDate><guid>tag:blog.notmyidea.org,2010-10-20:oh-yeah.html</guid><category>oh</category><category>bar</category><category>yeah</category></item></channel></rss>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/cat1.atom.xml" rel="self"></link><id>http://blog.notmyidea.org</id><updated>2011-04-20T00:00:00+02:00</updated><entry><title>A markdown powered article</title><link href="http://blog.notmyidea.org/a-markdown-powered-article.html" rel="alternate"></link><updated>2011-04-20T00:00:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/a-markdown-powered-article.html</id><summary type="html">&lt;p&gt;You're mutually oblivious.&lt;/p&gt;</summary></entry><entry><title>Article 1</title><link href="http://blog.notmyidea.org/article-1.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/article-1.html</id><summary type="html">&lt;p&gt;Article 1&lt;/p&gt;
</summary></entry><entry><title>Article 2</title><link href="http://blog.notmyidea.org/article-2.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/article-2.html</id><summary type="html">&lt;p&gt;Article 2&lt;/p&gt;
</summary></entry><entry><title>Article 3</title><link href="http://blog.notmyidea.org/article-3.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/article-3.html</id><summary type="html">&lt;p&gt;Article 3&lt;/p&gt;
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org/" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/cat1.atom.xml" rel="self"></link><id>http://blog.notmyidea.org/</id><updated>2011-04-20T00:00:00+02:00</updated><entry><title>A markdown powered article</title><link href="http://blog.notmyidea.org/a-markdown-powered-article.html" rel="alternate"></link><updated>2011-04-20T00:00:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-04-20:a-markdown-powered-article.html</id><summary type="html">&lt;p&gt;You're mutually oblivious.&lt;/p&gt;</summary></entry><entry><title>Article 1</title><link href="http://blog.notmyidea.org/article-1.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-1.html</id><summary type="html">&lt;p&gt;Article 1&lt;/p&gt;
</summary></entry><entry><title>Article 2</title><link href="http://blog.notmyidea.org/article-2.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-2.html</id><summary type="html">&lt;p&gt;Article 2&lt;/p&gt;
</summary></entry><entry><title>Article 3</title><link href="http://blog.notmyidea.org/article-3.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-3.html</id><summary type="html">&lt;p&gt;Article 3&lt;/p&gt;
</summary></entry></feed>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Alexis' log</title><link>http://blog.notmyidea.org</link><description></description><atom:link href="http://blog.notmyidea.org/feeds/cat1.rss.xml" rel="self"></atom:link><lastBuildDate>Wed, 20 Apr 2011 00:00:00 +0200</lastBuildDate><item><title>A markdown powered article</title><link>http://blog.notmyidea.org/a-markdown-powered-article.html</link><description>&lt;p&gt;You're mutually oblivious.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Wed, 20 Apr 2011 00:00:00 +0200</pubDate><guid>http://blog.notmyidea.org/a-markdown-powered-article.html</guid></item><item><title>Article 1</title><link>http://blog.notmyidea.org/article-1.html</link><description>&lt;p&gt;Article 1&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 17 Feb 2011 00:00:00 +0100</pubDate><guid>http://blog.notmyidea.org/article-1.html</guid></item><item><title>Article 2</title><link>http://blog.notmyidea.org/article-2.html</link><description>&lt;p&gt;Article 2&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 17 Feb 2011 00:00:00 +0100</pubDate><guid>http://blog.notmyidea.org/article-2.html</guid></item><item><title>Article 3</title><link>http://blog.notmyidea.org/article-3.html</link><description>&lt;p&gt;Article 3&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 17 Feb 2011 00:00:00 +0100</pubDate><guid>http://blog.notmyidea.org/article-3.html</guid></item></channel></rss>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Alexis' log</title><link>http://blog.notmyidea.org/</link><description></description><atom:link href="http://blog.notmyidea.org/feeds/cat1.rss.xml" rel="self"></atom:link><lastBuildDate>Wed, 20 Apr 2011 00:00:00 +0200</lastBuildDate><item><title>A markdown powered article</title><link>http://blog.notmyidea.org/a-markdown-powered-article.html</link><description>&lt;p&gt;You're mutually oblivious.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Wed, 20 Apr 2011 00:00:00 +0200</pubDate><guid>tag:blog.notmyidea.org,2011-04-20:a-markdown-powered-article.html</guid></item><item><title>Article 1</title><link>http://blog.notmyidea.org/article-1.html</link><description>&lt;p&gt;Article 1&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 17 Feb 2011 00:00:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2011-02-17:article-1.html</guid></item><item><title>Article 2</title><link>http://blog.notmyidea.org/article-2.html</link><description>&lt;p&gt;Article 2&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 17 Feb 2011 00:00:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2011-02-17:article-2.html</guid></item><item><title>Article 3</title><link>http://blog.notmyidea.org/article-3.html</link><description>&lt;p&gt;Article 3&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 17 Feb 2011 00:00:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2011-02-17:article-3.html</guid></item></channel></rss>

View file

@ -1,4 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/content.atom.xml" rel="self"></link><id>http://blog.notmyidea.org</id><updated>2012-02-29T00:00:00+01:00</updated><entry><title>Second article</title><link href="http://blog.notmyidea.org/second-article.html" rel="alternate"></link><updated>2012-02-29T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/second-article.html</id><summary type="html">&lt;p&gt;This is some article, in english&lt;/p&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry><entry><title>Unbelievable !</title><link href="http://blog.notmyidea.org/unbelievable.html" rel="alternate"></link><updated>2010-10-15T20:30:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/unbelievable.html</id><summary type="html">&lt;p&gt;Or completely awesome. Depends the needs.&lt;/p&gt;
</summary></entry></feed>

View file

@ -1,4 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Alexis' log</title><link>http://blog.notmyidea.org</link><description></description><atom:link href="http://blog.notmyidea.org/feeds/content.rss.xml" rel="self"></atom:link><lastBuildDate>Wed, 29 Feb 2012 00:00:00 +0100</lastBuildDate><item><title>Second article</title><link>http://blog.notmyidea.org/second-article.html</link><description>&lt;p&gt;This is some article, in english&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Wed, 29 Feb 2012 00:00:00 +0100</pubDate><guid>http://blog.notmyidea.org/second-article.html</guid><category>foo</category><category>bar</category><category>baz</category></item><item><title>Unbelievable !</title><link>http://blog.notmyidea.org/unbelievable.html</link><description>&lt;p&gt;Or completely awesome. Depends the needs.&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 15 Oct 2010 20:30:00 +0200</pubDate><guid>http://blog.notmyidea.org/unbelievable.html</guid></item></channel></rss>

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org/" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/misc.atom.xml" rel="self"></link><id>http://blog.notmyidea.org/</id><updated>2012-02-29T00:00:00+01:00</updated><entry><title>Second article</title><link href="http://blog.notmyidea.org/second-article.html" rel="alternate"></link><updated>2012-02-29T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-02-29:second-article.html</id><summary type="html">&lt;p&gt;This is some article, in english&lt;/p&gt;
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry><entry><title>Unbelievable !</title><link href="http://blog.notmyidea.org/unbelievable.html" rel="alternate"></link><updated>2010-10-15T20:30:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-10-15:unbelievable.html</id><summary type="html">&lt;p&gt;Or completely awesome. Depends the needs.&lt;/p&gt;
</summary></entry></feed>

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Alexis' log</title><link>http://blog.notmyidea.org/</link><description></description><atom:link href="http://blog.notmyidea.org/feeds/misc.rss.xml" rel="self"></atom:link><lastBuildDate>Wed, 29 Feb 2012 00:00:00 +0100</lastBuildDate><item><title>Second article</title><link>http://blog.notmyidea.org/second-article.html</link><description>&lt;p&gt;This is some article, in english&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Wed, 29 Feb 2012 00:00:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2012-02-29:second-article.html</guid><category>foo</category><category>bar</category><category>baz</category></item><item><title>Unbelievable !</title><link>http://blog.notmyidea.org/unbelievable.html</link><description>&lt;p&gt;Or completely awesome. Depends the needs.&lt;/p&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 15 Oct 2010 20:30:00 +0200</pubDate><guid>tag:blog.notmyidea.org,2010-10-15:unbelievable.html</guid></item></channel></rss>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/yeah.atom.xml" rel="self"></link><id>http://blog.notmyidea.org</id><updated>2010-12-02T10:14:00+01:00</updated><entry><title>This is a super article !</title><link href="http://blog.notmyidea.org/this-is-a-super-article.html" rel="alternate"></link><updated>2010-12-02T10:14:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>http://blog.notmyidea.org/this-is-a-super-article.html</id><summary type="html">&lt;p&gt;Some content here !&lt;/p&gt;
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org/" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/yeah.atom.xml" rel="self"></link><id>http://blog.notmyidea.org/</id><updated>2010-12-02T10:14:00+01:00</updated><entry><title>This is a super article !</title><link href="http://blog.notmyidea.org/this-is-a-super-article.html" rel="alternate"></link><updated>2010-12-02T10:14:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-12-02:this-is-a-super-article.html</id><summary type="html">&lt;p&gt;Some content here !&lt;/p&gt;
&lt;div class="section" id="this-is-a-simple-title"&gt;
&lt;h2&gt;This is a simple title&lt;/h2&gt;
&lt;p&gt;And here comes the cool &lt;a class="reference external" href="http://books.couchdb.org/relax/design-documents/views"&gt;stuff&lt;/a&gt;.&lt;/p&gt;

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Alexis' log</title><link>http://blog.notmyidea.org</link><description></description><atom:link href="http://blog.notmyidea.org/feeds/yeah.rss.xml" rel="self"></atom:link><lastBuildDate>Thu, 02 Dec 2010 10:14:00 +0100</lastBuildDate><item><title>This is a super article !</title><link>http://blog.notmyidea.org/this-is-a-super-article.html</link><description>&lt;p&gt;Some content here !&lt;/p&gt;
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Alexis' log</title><link>http://blog.notmyidea.org/</link><description></description><atom:link href="http://blog.notmyidea.org/feeds/yeah.rss.xml" rel="self"></atom:link><lastBuildDate>Thu, 02 Dec 2010 10:14:00 +0100</lastBuildDate><item><title>This is a super article !</title><link>http://blog.notmyidea.org/this-is-a-super-article.html</link><description>&lt;p&gt;Some content here !&lt;/p&gt;
&lt;div class="section" id="this-is-a-simple-title"&gt;
&lt;h2&gt;This is a simple title&lt;/h2&gt;
&lt;p&gt;And here comes the cool &lt;a class="reference external" href="http://books.couchdb.org/relax/design-documents/views"&gt;stuff&lt;/a&gt;.&lt;/p&gt;
@ -11,4 +11,4 @@
&lt;/pre&gt;
&lt;p&gt;→ And now try with some utf8 hell: ééé&lt;/p&gt;
&lt;/div&gt;
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 02 Dec 2010 10:14:00 +0100</pubDate><guid>http://blog.notmyidea.org/this-is-a-super-article.html</guid><category>foo</category><category>bar</category><category>foobar</category></item></channel></rss>
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 02 Dec 2010 10:14:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2010-12-02:this-is-a-super-article.html</guid><category>foo</category><category>bar</category><category>foobar</category></item></channel></rss>

View file

@ -39,14 +39,14 @@
<li ><a href="./category/yeah.html">yeah</a></li>
<li ><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
<li ><a href="./category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
@ -68,7 +68,7 @@
By <a class="url fn" href="./author/alexis-metaireau.html">Alexis Métaireau</a>
</address>
<p>In <a href="./category/content.html">content</a>. </p>
<p>In <a href="./category/misc.html">misc</a>. </p>
<p>tags: <a href="./tag/foo.html">foo</a><a href="./tag/bar.html">bar</a><a href="./tag/baz.html">baz</a></p>
@ -91,7 +91,6 @@ Translations:
@ -99,7 +98,8 @@ Translations:
<li><article class="hentry">
<header>
<h1><a href="./a-markdown-powered-article.html" rel="bookmark" title="Permalink to A markdown powered article">A markdown powered article</a></h1>
<h1><a href="./a-markdown-powered-article.html" rel="bookmark"
title="Permalink to A markdown powered article">A markdown powered article</a></h1>
</header>
<div class="entry-content">
@ -125,7 +125,6 @@ Translations:
</article></li>
@ -133,7 +132,8 @@ Translations:
<li><article class="hentry">
<header>
<h1><a href="./article-1.html" rel="bookmark" title="Permalink to Article 1">Article 1</a></h1>
<h1><a href="./article-1.html" rel="bookmark"
title="Permalink to Article 1">Article 1</a></h1>
</header>
<div class="entry-content">
@ -160,7 +160,6 @@ Translations:
</article></li>
@ -168,7 +167,8 @@ Translations:
<li><article class="hentry">
<header>
<h1><a href="./article-2.html" rel="bookmark" title="Permalink to Article 2">Article 2</a></h1>
<h1><a href="./article-2.html" rel="bookmark"
title="Permalink to Article 2">Article 2</a></h1>
</header>
<div class="entry-content">
@ -195,7 +195,9 @@ Translations:
</article></li>
</ol><!-- /#posts-list -->
<p class="paginator">
Page 1 / 2
@ -204,9 +206,7 @@ Translations:
</p>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -39,14 +39,14 @@
<li ><a href="./category/yeah.html">yeah</a></li>
<li ><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
<li ><a href="./category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
@ -61,7 +61,8 @@
<li><article class="hentry">
<header>
<h1><a href="./article-3.html" rel="bookmark" title="Permalink to Article 3">Article 3</a></h1>
<h1><a href="./article-3.html" rel="bookmark"
title="Permalink to Article 3">Article 3</a></h1>
</header>
<div class="entry-content">
@ -88,7 +89,6 @@
</article></li>
@ -96,7 +96,8 @@
<li><article class="hentry">
<header>
<h1><a href="./this-is-a-super-article.html" rel="bookmark" title="Permalink to This is a super article !">This is a super article !</a></h1>
<h1><a href="./this-is-a-super-article.html" rel="bookmark"
title="Permalink to This is a super article !">This is a super article !</a></h1>
</header>
<div class="entry-content">
@ -115,15 +116,15 @@
</footer><!-- /.post-info -->
Multi-line metadata should be supported
as well as <strong>inline markup</strong>.
<p class="first last">Multi-line metadata should be supported
as well as <strong>inline markup</strong>.</p>
<a class="readmore" href="./this-is-a-super-article.html">read more</a>
<p>There are <a href="./this-is-a-super-article.html#disqus_thread">comments</a>.</p>
</div><!-- /.entry-content -->
</article></li>
@ -131,7 +132,8 @@ as well as <strong>inline markup</strong>.
<li><article class="hentry">
<header>
<h1><a href="./oh-yeah.html" rel="bookmark" title="Permalink to Oh yeah !">Oh yeah !</a></h1>
<h1><a href="./oh-yeah.html" rel="bookmark"
title="Permalink to Oh yeah !">Oh yeah !</a></h1>
</header>
<div class="entry-content">
@ -168,7 +170,6 @@ YEAH !</p>
</article></li>
@ -176,7 +177,8 @@ YEAH !</p>
<li><article class="hentry">
<header>
<h1><a href="./unbelievable.html" rel="bookmark" title="Permalink to Unbelievable !">Unbelievable !</a></h1>
<h1><a href="./unbelievable.html" rel="bookmark"
title="Permalink to Unbelievable !">Unbelievable !</a></h1>
</header>
<div class="entry-content">
@ -190,7 +192,7 @@ YEAH !</p>
By <a class="url fn" href="./author/alexis-metaireau.html">Alexis Métaireau</a>
</address>
<p>In <a href="./category/content.html">content</a>. </p>
<p>In <a href="./category/misc.html">misc</a>. </p>
@ -203,7 +205,9 @@ YEAH !</p>
</article></li>
</ol><!-- /#posts-list -->
<p class="paginator">
@ -214,9 +218,7 @@ YEAH !</p>
</p>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -39,23 +39,28 @@
<li ><a href="./category/yeah.html">yeah</a></li>
<li class="active"><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
<li class="active"><a href="./category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to Trop bien !">Trop bien !</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="oh-yeah-fr.html" rel="bookmark"
title="Permalink to Trop bien !">Trop bien !</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2012-03-02T14:01:01">
Fri 02 March 2012
</abbr>
@ -65,7 +70,7 @@
By <a class="url fn" href="./author/alexis-metaireau.html">Alexis Métaireau</a>
</address>
<p>In <a href="./category/content.html">content</a>. </p>
<p>In <a href="./category/misc.html">misc</a>. </p>
@ -75,25 +80,25 @@ Translations:
</footer><!-- /.post-info -->
<p>Et voila du contenu en français</p>
<p>Et voila du contenu en français</p>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "oh-yeah-fr.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "oh-yeah-fr.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -39,23 +39,28 @@
<li ><a href="./category/yeah.html">yeah</a></li>
<li ><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/cat1.html">cat1</a></li>
<li class="active"><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
<li ><a href="./category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to Oh yeah !">Oh yeah !</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="oh-yeah.html" rel="bookmark"
title="Permalink to Oh yeah !">Oh yeah !</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2010-10-20T10:14:00">
Wed 20 October 2010
</abbr>
@ -75,30 +80,30 @@ Translations:
</footer><!-- /.post-info -->
<div class="section" id="why-not">
<div class="section" id="why-not">
<h2>Why not ?</h2>
<p>After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst !
YEAH !</p>
<img alt="alternate text" src="static/pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
</div>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "oh-yeah.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "oh-yeah.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -0,0 +1,125 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>This is a test hidden page</title>
<meta charset="utf-8" />
<link rel="stylesheet" href=".././theme/css/main.css" type="text/css" />
<link href="http://blog.notmyidea.org/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Alexis' log Atom Feed" />
<link href="http://blog.notmyidea.org/feeds/all.rss.xml" type="application/rss+xml" rel="alternate" title="Alexis' log RSS Feed" />
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<!--[if lte IE 7]>
<link rel="stylesheet" type="text/css" media="all" href=".././css/ie.css"/>
<script src=".././js/IE8.js" type="text/javascript"></script><![endif]-->
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" media="all" href=".././css/ie6.css"/><![endif]-->
</head>
<body id="index" class="home">
<a href="http://github.com/ametaireau/">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub" />
</a>
<header id="banner" class="body">
<h1><a href="../.">Alexis' log </a></h1>
<nav><ul>
<li><a href=".././pages/this-is-a-test-page.html">This is a test page</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<h1 class="entry-title">This is a test hidden page</h1>
<p>This is great for things like error(404) pages
Anyone can see this page but it's not linked to anywhere!</p>
</section>
<section id="extras" class="body">
<div class="blogroll">
<h2>blogroll</h2>
<ul>
<li><a href="http://biologeek.org">Biologeek</a></li>
<li><a href="http://filyb.info/">Filyb</a></li>
<li><a href="http://www.libert-fr.com">Libert-fr</a></li>
<li><a href="http://prendreuncafe.com/blog/">N1k0</a></li>
<li><a href="http://ziade.org/blog">Tarek Ziadé</a></li>
<li><a href="http://zubin71.wordpress.com/">Zubin Mithra</a></li>
</ul>
</div><!-- /.blogroll -->
<div class="social">
<h2>social</h2>
<ul>
<li><a href="http://blog.notmyidea.org/feeds/all.atom.xml" type="application/atom+xml" rel="alternate">atom feed</a></li>
<li><a href="http://blog.notmyidea.org/feeds/all.rss.xml" type="application/rss+xml" rel="alternate">rss feed</a></li>
<li><a href="http://twitter.com/ametaireau">twitter</a></li>
<li><a href="http://lastfm.com/user/akounet">lastfm</a></li>
<li><a href="http://github.com/ametaireau">github</a></li>
</ul>
</div><!-- /.social -->
</section><!-- /#extras -->
<footer id="contentinfo" class="body">
<address id="about" class="vcard body">
Proudly powered by <a href="http://pelican.notmyidea.org/">Pelican</a>, which takes great advantage of <a href="http://python.org">Python</a>.
</address><!-- /#about -->
<p>The theme is by <a href="http://coding.smashingmagazine.com/2009/08/04/designing-a-html-5-layout-from-scratch/">Smashing Magazine</a>, thanks!</p>
</footer><!-- /#contentinfo -->
<script type="text/javascript">
var disqus_shortname = 'blog-notmyidea';
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = 'http://' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>
</body>
</html>

View file

@ -39,14 +39,14 @@
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->

View file

@ -39,23 +39,28 @@
<li ><a href="./category/yeah.html">yeah</a></li>
<li class="active"><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
<li class="active"><a href="./category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to Deuxième article">Deuxième article</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="second-article-fr.html" rel="bookmark"
title="Permalink to Deuxième article">Deuxième article</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2012-02-29T00:00:00">
Wed 29 February 2012
</abbr>
@ -65,7 +70,7 @@
By <a class="url fn" href="./author/alexis-metaireau.html">Alexis Métaireau</a>
</address>
<p>In <a href="./category/content.html">content</a>. </p>
<p>In <a href="./category/misc.html">misc</a>. </p>
<p>tags: <a href="./tag/foo.html">foo</a><a href="./tag/bar.html">bar</a><a href="./tag/baz.html">baz</a></p>
@ -75,25 +80,25 @@ Translations:
</footer><!-- /.post-info -->
<p>Ceci est un article, en français.</p>
<p>Ceci est un article, en français.</p>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "second-article-fr.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "second-article-fr.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -39,23 +39,28 @@
<li ><a href="./category/yeah.html">yeah</a></li>
<li class="active"><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
<li class="active"><a href="./category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to Second article">Second article</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="second-article.html" rel="bookmark"
title="Permalink to Second article">Second article</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2012-02-29T00:00:00">
Wed 29 February 2012
</abbr>
@ -65,7 +70,7 @@
By <a class="url fn" href="./author/alexis-metaireau.html">Alexis Métaireau</a>
</address>
<p>In <a href="./category/content.html">content</a>. </p>
<p>In <a href="./category/misc.html">misc</a>. </p>
<p>tags: <a href="./tag/foo.html">foo</a><a href="./tag/bar.html">bar</a><a href="./tag/baz.html">baz</a></p>
@ -75,25 +80,25 @@ Translations:
</footer><!-- /.post-info -->
<p>This is some article, in english</p>
<p>This is some article, in english</p>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "second-article.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "second-article.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -39,14 +39,14 @@
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
@ -57,7 +57,7 @@
<aside id="featured" class="body">
<article>
<h1 class="entry-title"><a href=".././second-article-fr.html">Deuxième article</a></h1>
<h1 class="entry-title"><a href=".././second-article.html">Second article</a></h1>
<footer class="post-info">
<abbr class="published" title="2012-02-29T00:00:00">
Wed 29 February 2012
@ -68,17 +68,17 @@
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>
<p>In <a href=".././category/misc.html">misc</a>. </p>
<p>tags: <a href=".././tag/foo.html">foo</a><a href=".././tag/bar.html">bar</a><a href=".././tag/baz.html">baz</a></p>
Translations:
<a href=".././second-article.html">en</a>
<a href=".././second-article-fr.html">fr</a>
</footer><!-- /.post-info --><p>Ceci est un article, en français.</p>
<p>There are <a href=".././second-article-fr.html#disqus_thread">comments</a>.</p>
</footer><!-- /.post-info --><p>This is some article, in english</p>
<p>There are <a href=".././second-article.html#disqus_thread">comments</a>.</p>
</article>
</aside><!-- /#featured -->
@ -91,7 +91,6 @@ Translations:
@ -99,7 +98,8 @@ Translations:
<li><article class="hentry">
<header>
<h1><a href=".././second-article.html" rel="bookmark" title="Permalink to Second article">Second article</a></h1>
<h1><a href=".././second-article-fr.html" rel="bookmark"
title="Permalink to Deuxième article">Deuxième article</a></h1>
</header>
<div class="entry-content">
@ -113,25 +113,24 @@ Translations:
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>
<p>In <a href=".././category/misc.html">misc</a>. </p>
<p>tags: <a href=".././tag/foo.html">foo</a><a href=".././tag/bar.html">bar</a><a href=".././tag/baz.html">baz</a></p>
Translations:
<a href=".././second-article-fr.html">fr</a>
<a href=".././second-article.html">en</a>
</footer><!-- /.post-info -->
<p>This is some article, in english</p>
<p>Ceci est un article, en français.</p>
<a class="readmore" href=".././second-article.html">read more</a>
<p>There are <a href=".././second-article.html#disqus_thread">comments</a>.</p>
<a class="readmore" href=".././second-article-fr.html">read more</a>
<p>There are <a href=".././second-article-fr.html#disqus_thread">comments</a>.</p>
</div><!-- /.entry-content -->
</article></li>
@ -139,7 +138,8 @@ Translations:
<li><article class="hentry">
<header>
<h1><a href=".././this-is-a-super-article.html" rel="bookmark" title="Permalink to This is a super article !">This is a super article !</a></h1>
<h1><a href=".././this-is-a-super-article.html" rel="bookmark"
title="Permalink to This is a super article !">This is a super article !</a></h1>
</header>
<div class="entry-content">
@ -158,15 +158,15 @@ Translations:
</footer><!-- /.post-info -->
Multi-line metadata should be supported
as well as <strong>inline markup</strong>.
<p class="first last">Multi-line metadata should be supported
as well as <strong>inline markup</strong>.</p>
<a class="readmore" href=".././this-is-a-super-article.html">read more</a>
<p>There are <a href=".././this-is-a-super-article.html#disqus_thread">comments</a>.</p>
</div><!-- /.entry-content -->
</article></li>
@ -174,7 +174,8 @@ as well as <strong>inline markup</strong>.
<li><article class="hentry">
<header>
<h1><a href=".././oh-yeah.html" rel="bookmark" title="Permalink to Oh yeah !">Oh yeah !</a></h1>
<h1><a href=".././oh-yeah.html" rel="bookmark"
title="Permalink to Oh yeah !">Oh yeah !</a></h1>
</header>
<div class="entry-content">
@ -211,16 +212,16 @@ YEAH !</p>
</article></li>
</ol><!-- /#posts-list -->
<p class="paginator">
Page 1 / 1
</p>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -39,14 +39,14 @@
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
@ -57,7 +57,7 @@
<aside id="featured" class="body">
<article>
<h1 class="entry-title"><a href=".././second-article-fr.html">Deuxième article</a></h1>
<h1 class="entry-title"><a href=".././second-article.html">Second article</a></h1>
<footer class="post-info">
<abbr class="published" title="2012-02-29T00:00:00">
Wed 29 February 2012
@ -68,17 +68,17 @@
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>
<p>In <a href=".././category/misc.html">misc</a>. </p>
<p>tags: <a href=".././tag/foo.html">foo</a><a href=".././tag/bar.html">bar</a><a href=".././tag/baz.html">baz</a></p>
Translations:
<a href=".././second-article.html">en</a>
<a href=".././second-article-fr.html">fr</a>
</footer><!-- /.post-info --><p>Ceci est un article, en français.</p>
<p>There are <a href=".././second-article-fr.html#disqus_thread">comments</a>.</p>
</footer><!-- /.post-info --><p>This is some article, in english</p>
<p>There are <a href=".././second-article.html#disqus_thread">comments</a>.</p>
</article>
</aside><!-- /#featured -->
@ -91,7 +91,6 @@ Translations:
@ -99,7 +98,8 @@ Translations:
<li><article class="hentry">
<header>
<h1><a href=".././second-article.html" rel="bookmark" title="Permalink to Second article">Second article</a></h1>
<h1><a href=".././second-article-fr.html" rel="bookmark"
title="Permalink to Deuxième article">Deuxième article</a></h1>
</header>
<div class="entry-content">
@ -113,34 +113,34 @@ Translations:
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>
<p>In <a href=".././category/misc.html">misc</a>. </p>
<p>tags: <a href=".././tag/foo.html">foo</a><a href=".././tag/bar.html">bar</a><a href=".././tag/baz.html">baz</a></p>
Translations:
<a href=".././second-article-fr.html">fr</a>
<a href=".././second-article.html">en</a>
</footer><!-- /.post-info -->
<p>This is some article, in english</p>
<p>Ceci est un article, en français.</p>
<a class="readmore" href=".././second-article.html">read more</a>
<p>There are <a href=".././second-article.html#disqus_thread">comments</a>.</p>
<a class="readmore" href=".././second-article-fr.html">read more</a>
<p>There are <a href=".././second-article-fr.html#disqus_thread">comments</a>.</p>
</div><!-- /.entry-content -->
</article></li>
</ol><!-- /#posts-list -->
<p class="paginator">
Page 1 / 1
</p>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -39,14 +39,14 @@
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
@ -57,7 +57,7 @@
<aside id="featured" class="body">
<article>
<h1 class="entry-title"><a href=".././second-article-fr.html">Deuxième article</a></h1>
<h1 class="entry-title"><a href=".././second-article.html">Second article</a></h1>
<footer class="post-info">
<abbr class="published" title="2012-02-29T00:00:00">
Wed 29 February 2012
@ -68,17 +68,17 @@
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>
<p>In <a href=".././category/misc.html">misc</a>. </p>
<p>tags: <a href=".././tag/foo.html">foo</a><a href=".././tag/bar.html">bar</a><a href=".././tag/baz.html">baz</a></p>
Translations:
<a href=".././second-article.html">en</a>
<a href=".././second-article-fr.html">fr</a>
</footer><!-- /.post-info --><p>Ceci est un article, en français.</p>
<p>There are <a href=".././second-article-fr.html#disqus_thread">comments</a>.</p>
</footer><!-- /.post-info --><p>This is some article, in english</p>
<p>There are <a href=".././second-article.html#disqus_thread">comments</a>.</p>
</article>
</aside><!-- /#featured -->
@ -91,7 +91,6 @@ Translations:
@ -99,7 +98,8 @@ Translations:
<li><article class="hentry">
<header>
<h1><a href=".././second-article.html" rel="bookmark" title="Permalink to Second article">Second article</a></h1>
<h1><a href=".././second-article-fr.html" rel="bookmark"
title="Permalink to Deuxième article">Deuxième article</a></h1>
</header>
<div class="entry-content">
@ -113,25 +113,24 @@ Translations:
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
</address>
<p>In <a href=".././category/content.html">content</a>. </p>
<p>In <a href=".././category/misc.html">misc</a>. </p>
<p>tags: <a href=".././tag/foo.html">foo</a><a href=".././tag/bar.html">bar</a><a href=".././tag/baz.html">baz</a></p>
Translations:
<a href=".././second-article-fr.html">fr</a>
<a href=".././second-article.html">en</a>
</footer><!-- /.post-info -->
<p>This is some article, in english</p>
<p>Ceci est un article, en français.</p>
<a class="readmore" href=".././second-article.html">read more</a>
<p>There are <a href=".././second-article.html#disqus_thread">comments</a>.</p>
<a class="readmore" href=".././second-article-fr.html">read more</a>
<p>There are <a href=".././second-article-fr.html#disqus_thread">comments</a>.</p>
</div><!-- /.entry-content -->
</article></li>
@ -139,7 +138,8 @@ Translations:
<li><article class="hentry">
<header>
<h1><a href=".././this-is-a-super-article.html" rel="bookmark" title="Permalink to This is a super article !">This is a super article !</a></h1>
<h1><a href=".././this-is-a-super-article.html" rel="bookmark"
title="Permalink to This is a super article !">This is a super article !</a></h1>
</header>
<div class="entry-content">
@ -158,24 +158,25 @@ Translations:
</footer><!-- /.post-info -->
Multi-line metadata should be supported
as well as <strong>inline markup</strong>.
<p class="first last">Multi-line metadata should be supported
as well as <strong>inline markup</strong>.</p>
<a class="readmore" href=".././this-is-a-super-article.html">read more</a>
<p>There are <a href=".././this-is-a-super-article.html#disqus_thread">comments</a>.</p>
</div><!-- /.entry-content -->
</article></li>
</ol><!-- /#posts-list -->
<p class="paginator">
Page 1 / 1
</p>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -39,14 +39,14 @@
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
@ -100,8 +100,8 @@
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -39,14 +39,14 @@
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
@ -99,8 +99,8 @@ YEAH !</p>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -39,14 +39,14 @@
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/misc.html">misc</a></li>
<li ><a href=".././category/cat1.html">cat1</a></li>
<li ><a href=".././category/bar.html">bar</a></li>
<li ><a href=".././category/yeah.html">yeah</a></li>
<li ><a href=".././category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
@ -99,8 +99,8 @@ YEAH !</p>
</ol><!-- /#posts-list -->
</section><!-- /#content -->

View file

@ -111,6 +111,13 @@ cite {}
q {}
div.note {
float: right;
margin: 5px;
font-size: 85%;
max-width: 300px;
}
/* Tables */
table {margin: .5em auto 1.5em auto; width: 98%;}
@ -305,6 +312,7 @@ img.left, figure.left {float: right; margin: 0 0 2em 2em;}
.social a[type$='atom+xml'], .social a[type$='rss+xml'] {background-image: url('../images/icons/rss.png');}
.social a[href*='twitter.com'] {background-image: url('../images/icons/twitter.png');}
.social a[href*='linkedin.com'] {background-image: url('../images/icons/linkedin.png');}
.social a[href*='gitorious.org'] {background-image: url('../images/icons/gitorious.org');}
/*
About

View file

@ -4,13 +4,17 @@ body {
font:1.3em/1.3 "Hoefler Text","Georgia",Georgia,serif,sans-serif;
}
.body, #banner nav, #banner nav ul, #about, #featured, #content{
width: inherit;
.post-info{
display: none;
}
#banner nav {
display: none;
-moz-border-radius: 0px;
margin-bottom: 0px;
margin-bottom: 20px;
overflow: hidden;
font-size: 1em;
background: #F5F4EF;
}
#banner nav ul{
@ -19,10 +23,11 @@ body {
#banner nav li{
float: right;
color: #000;
}
#banner nav li:first-child a {
-moz-border-radius: 0px;
#banner nav li a {
color: #000;
}
#banner h1 {

Binary file not shown.

After

Width:  |  Height:  |  Size: 300 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

View file

@ -39,23 +39,28 @@
<li class="active"><a href="./category/yeah.html">yeah</a></li>
<li ><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li class="active"><a href="./category/yeah.html">yeah</a></li>
<li ><a href="./category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to This is a super article !">This is a super article !</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="this-is-a-super-article.html" rel="bookmark"
title="Permalink to This is a super article !">This is a super article !</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2010-12-02T10:14:00">
Thu 02 December 2010
</abbr>
@ -70,7 +75,7 @@
</footer><!-- /.post-info -->
<p>Some content here !</p>
<p>Some content here !</p>
<div class="section" id="this-is-a-simple-title">
<h2>This is a simple title</h2>
<p>And here comes the cool <a class="reference external" href="http://books.couchdb.org/relax/design-documents/views">stuff</a>.</p>
@ -83,23 +88,23 @@
<p>→ And now try with some utf8 hell: ééé</p>
</div>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "this-is-a-super-article.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "this-is-a-super-article.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -39,23 +39,28 @@
<li ><a href="./category/yeah.html">yeah</a></li>
<li class="active"><a href="./category/misc.html">misc</a></li>
<li ><a href="./category/cat1.html">cat1</a></li>
<li ><a href="./category/bar.html">bar</a></li>
<li ><a href="./category/yeah.html">yeah</a></li>
<li class="active"><a href="./category/content.html">content</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href=""
rel="bookmark" title="Permalink to Unbelievable !">Unbelievable !</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="unbelievable.html" rel="bookmark"
title="Permalink to Unbelievable !">Unbelievable !</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2010-10-15T20:30:00">
Fri 15 October 2010
</abbr>
@ -65,30 +70,30 @@
By <a class="url fn" href="./author/alexis-metaireau.html">Alexis Métaireau</a>
</address>
<p>In <a href="./category/content.html">content</a>. </p>
<p>In <a href="./category/misc.html">misc</a>. </p>
</footer><!-- /.post-info -->
<p>Or completely awesome. Depends the needs.</p>
<p>Or completely awesome. Depends the needs.</p>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "unbelievable.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</div><!-- /.entry-content -->
<div class="comments">
<h2>Comments !</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "unbelievable.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</article>
</article>
</section>
<section id="extras" class="body">

View file

@ -1,5 +1,4 @@
__all__ = [
'temporary_folder',
'get_article',
'unittest',
]

Some files were not shown because too many files have changed in this diff Show more