mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Pull from ametaireau / pelican
This commit is contained in:
commit
875734f963
105 changed files with 2139 additions and 1458 deletions
|
|
@ -39,6 +39,14 @@ The tests live in "pelican/tests" and you can run them using the
|
||||||
|
|
||||||
$ unit2 discover
|
$ 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
|
Coding standards
|
||||||
================
|
================
|
||||||
|
|
||||||
|
|
|
||||||
11
docs/faq.rst
11
docs/faq.rst
|
|
@ -49,3 +49,14 @@ install it. You can do so by typing::
|
||||||
In case you don't have pip installed, consider installing it via::
|
In case you don't have pip installed, consider installing it via::
|
||||||
|
|
||||||
$ (sudo) easy_install pip
|
$ (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``.
|
||||||
|
|
@ -133,8 +133,12 @@ Pelican est fournit avec :doc:`pelican-themes`, un script permettant de gérer l
|
||||||
Paramètres divers
|
Paramètres divers
|
||||||
=================
|
=================
|
||||||
|
|
||||||
FALLBACK_ON_FS_DATE :
|
DEFAULT_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 ;
|
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 :
|
KEEP_OUTPUT DIRECTORY :
|
||||||
Ne génère que les fichiers modifiés et n'efface pas le repertoire de sortie ;
|
Ne génère que les fichiers modifiés et n'efface pas le repertoire de sortie ;
|
||||||
|
|
|
||||||
|
|
@ -33,9 +33,13 @@ Setting name (default value) What doe
|
||||||
`DISPLAY_PAGES_ON_MENU` (``True``) Whether to display pages on the menu of the
|
`DISPLAY_PAGES_ON_MENU` (``True``) Whether to display pages on the menu of the
|
||||||
template. Templates may or not honor this
|
template. Templates may or not honor this
|
||||||
setting.
|
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
|
timestamp information (mtime) if it can't get
|
||||||
date information from the metadata.
|
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.
|
`JINJA_EXTENSIONS` (``[]``) A list of any Jinja2 extensions you want to use.
|
||||||
`DELETE_OUTPUT_DIRECTORY` (``False``) Delete the content of the output directory before
|
`DELETE_OUTPUT_DIRECTORY` (``False``) Delete the content of the output directory before
|
||||||
generating new files.
|
generating new files.
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,7 @@ class Page(object):
|
||||||
:param content: the string to parse, containing the original content.
|
:param content: the string to parse, containing the original content.
|
||||||
"""
|
"""
|
||||||
mandatory_properties = ('title',)
|
mandatory_properties = ('title',)
|
||||||
|
default_template = 'page'
|
||||||
|
|
||||||
def __init__(self, content, metadata=None, settings=None,
|
def __init__(self, content, metadata=None, settings=None,
|
||||||
filename=None):
|
filename=None):
|
||||||
|
|
@ -44,6 +45,9 @@ class Page(object):
|
||||||
# also keep track of the metadata attributes available
|
# also keep track of the metadata attributes available
|
||||||
self.metadata = local_metadata
|
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
|
# default author to the one in settings if not defined
|
||||||
if not hasattr(self, 'author'):
|
if not hasattr(self, 'author'):
|
||||||
if 'AUTHOR' in settings:
|
if 'AUTHOR' in settings:
|
||||||
|
|
@ -153,9 +157,16 @@ class Page(object):
|
||||||
url = property(functools.partial(get_url_setting, key='url'))
|
url = property(functools.partial(get_url_setting, key='url'))
|
||||||
save_as = property(functools.partial(get_url_setting, key='save_as'))
|
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):
|
class Article(Page):
|
||||||
mandatory_properties = ('title', 'date', 'category')
|
mandatory_properties = ('title', 'date', 'category')
|
||||||
|
default_template = 'article'
|
||||||
|
|
||||||
|
|
||||||
class Quote(Page):
|
class Quote(Page):
|
||||||
|
|
|
||||||
|
|
@ -168,11 +168,9 @@ class ArticlesGenerator(Generator):
|
||||||
|
|
||||||
def generate_articles(self, write):
|
def generate_articles(self, write):
|
||||||
"""Generate the articles."""
|
"""Generate the articles."""
|
||||||
article_template = self.get_template('article')
|
|
||||||
for article in chain(self.translations, self.articles):
|
for article in chain(self.translations, self.articles):
|
||||||
write(article.save_as,
|
write(article.save_as, self.get_template(article.template),
|
||||||
article_template, self.context, article=article,
|
self.context, article=article, category=article.category)
|
||||||
category=article.category)
|
|
||||||
|
|
||||||
def generate_direct_templates(self, write):
|
def generate_direct_templates(self, write):
|
||||||
"""Generate direct templates pages"""
|
"""Generate direct templates pages"""
|
||||||
|
|
@ -223,10 +221,10 @@ class ArticlesGenerator(Generator):
|
||||||
|
|
||||||
def generate_drafts(self, write):
|
def generate_drafts(self, write):
|
||||||
"""Generate drafts pages."""
|
"""Generate drafts pages."""
|
||||||
article_template = self.get_template('article')
|
|
||||||
for article in self.drafts:
|
for article in self.drafts:
|
||||||
write('drafts/%s.html' % article.slug, article_template,
|
write('drafts/%s.html' % article.slug,
|
||||||
self.context, article=article, category=article.category)
|
self.get_template(article.template), self.context,
|
||||||
|
article=article, category=article.category)
|
||||||
|
|
||||||
def generate_pages(self, writer):
|
def generate_pages(self, writer):
|
||||||
"""Generate the pages on the disk"""
|
"""Generate the pages on the disk"""
|
||||||
|
|
@ -273,9 +271,13 @@ class ArticlesGenerator(Generator):
|
||||||
if category != '':
|
if category != '':
|
||||||
metadata['category'] = Category(category, self.settings)
|
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(
|
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)
|
signals.article_generate_context.send(self, metadata=metadata)
|
||||||
article = Article(content, metadata, settings=self.settings,
|
article = Article(content, metadata, settings=self.settings,
|
||||||
|
|
@ -415,7 +417,6 @@ class PagesGenerator(Generator):
|
||||||
(repr(unicode.encode(page.status, 'utf-8')),
|
(repr(unicode.encode(page.status, 'utf-8')),
|
||||||
repr(f)))
|
repr(f)))
|
||||||
|
|
||||||
|
|
||||||
self.pages, self.translations = process_translations(all_pages)
|
self.pages, self.translations = process_translations(all_pages)
|
||||||
self.hidden_pages, self.hidden_translations = process_translations(hidden_pages)
|
self.hidden_pages, self.hidden_translations = process_translations(hidden_pages)
|
||||||
|
|
||||||
|
|
@ -425,7 +426,7 @@ class PagesGenerator(Generator):
|
||||||
def generate_output(self, writer):
|
def generate_output(self, writer):
|
||||||
for page in chain(self.translations, self.pages,
|
for page in chain(self.translations, self.pages,
|
||||||
self.hidden_translations, self.hidden_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,
|
self.context, page=page,
|
||||||
relative_urls=self.settings.get('RELATIVE_URLS'))
|
relative_urls=self.settings.get('RELATIVE_URLS'))
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ _DEFAULT_CONFIG = {'PATH': '.',
|
||||||
'DISPLAY_PAGES_ON_MENU': True,
|
'DISPLAY_PAGES_ON_MENU': True,
|
||||||
'PDF_GENERATOR': False,
|
'PDF_GENERATOR': False,
|
||||||
'DEFAULT_CATEGORY': 'misc',
|
'DEFAULT_CATEGORY': 'misc',
|
||||||
'FALLBACK_ON_FS_DATE': True,
|
'DEFAULT_DATE': 'fs',
|
||||||
'WITH_FUTURE_DATES': True,
|
'WITH_FUTURE_DATES': True,
|
||||||
'CSS_FILE': 'main.css',
|
'CSS_FILE': 'main.css',
|
||||||
'REVERSE_ARCHIVE_ORDER': False,
|
'REVERSE_ARCHIVE_ORDER': False,
|
||||||
|
|
|
||||||
|
|
@ -8,8 +8,9 @@ GITHUB_URL = 'http://github.com/ametaireau/'
|
||||||
DISQUS_SITENAME = "blog-notmyidea"
|
DISQUS_SITENAME = "blog-notmyidea"
|
||||||
PDF_GENERATOR = False
|
PDF_GENERATOR = False
|
||||||
REVERSE_CATEGORY_ORDER = True
|
REVERSE_CATEGORY_ORDER = True
|
||||||
LOCALE = ""
|
LOCALE = "C"
|
||||||
DEFAULT_PAGINATION = 4
|
DEFAULT_PAGINATION = 4
|
||||||
|
DEFAULT_DATE = (2012, 03, 02, 14, 01, 01)
|
||||||
|
|
||||||
FEED_RSS = 'feeds/all.rss.xml'
|
FEED_RSS = 'feeds/all.rss.xml'
|
||||||
CATEGORY_FEED_RSS = 'feeds/%s.rss.xml'
|
CATEGORY_FEED_RSS = 'feeds/%s.rss.xml'
|
||||||
|
|
|
||||||
11
tests/TestPages/hidden_page_with_template.rst
Normal file
11
tests/TestPages/hidden_page_with_template.rst
Normal 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
|
||||||
8
tests/TestPages/page_with_template.rst
Normal file
8
tests/TestPages/page_with_template.rst
Normal 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
|
||||||
8
tests/content/article_with_template.rst
Normal file
8
tests/content/article_with_template.rst
Normal 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".
|
||||||
|
|
@ -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 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>
|
<li ><a href="./category/yeah.html">yeah</a></li>
|
||||||
|
|
||||||
</ul></nav>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to A markdown powered article">A markdown powered article</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="a-markdown-powered-article.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
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">
|
<abbr class="published" title="2011-04-20T00:00:00">
|
||||||
Wed 20 April 2011
|
Wed 20 April 2011
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</address>
|
||||||
|
|
||||||
<p>In <a href="./category/cat1.html">cat1</a>. </p>
|
<p>In <a href="./category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -62,11 +67,11 @@
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</footer><!-- /.post-info -->
|
||||||
<p>You're mutually oblivious.</p>
|
<p>You're mutually oblivious.</p>
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
|
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
|
|
@ -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/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>
|
||||||
|
|
||||||
|
|
@ -48,28 +48,28 @@
|
||||||
<dl>
|
<dl>
|
||||||
|
|
||||||
<dt>Fri 15 October 2010</dt>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
</dl>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
||||||
|
|
@ -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 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>
|
<li ><a href="./category/yeah.html">yeah</a></li>
|
||||||
|
|
||||||
</ul></nav>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to Article 1">Article 1</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="article-1.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
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">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Thu 17 February 2011
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</address>
|
||||||
|
|
||||||
<p>In <a href="./category/cat1.html">cat1</a>. </p>
|
<p>In <a href="./category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -62,12 +67,12 @@
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</footer><!-- /.post-info -->
|
||||||
<p>Article 1</p>
|
<p>Article 1</p>
|
||||||
|
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
|
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
|
|
@ -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 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>
|
<li ><a href="./category/yeah.html">yeah</a></li>
|
||||||
|
|
||||||
</ul></nav>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to Article 2">Article 2</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="article-2.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
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">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Thu 17 February 2011
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</address>
|
||||||
|
|
||||||
<p>In <a href="./category/cat1.html">cat1</a>. </p>
|
<p>In <a href="./category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -62,12 +67,12 @@
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</footer><!-- /.post-info -->
|
||||||
<p>Article 2</p>
|
<p>Article 2</p>
|
||||||
|
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
|
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
|
|
@ -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 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>
|
<li ><a href="./category/yeah.html">yeah</a></li>
|
||||||
|
|
||||||
</ul></nav>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to Article 3">Article 3</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="article-3.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
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">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Thu 17 February 2011
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</address>
|
||||||
|
|
||||||
<p>In <a href="./category/cat1.html">cat1</a>. </p>
|
<p>In <a href="./category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -62,12 +67,12 @@
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</footer><!-- /.post-info -->
|
||||||
<p>Article 3</p>
|
<p>Article 3</p>
|
||||||
|
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
|
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
|
|
@ -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/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>
|
||||||
|
|
||||||
|
|
@ -88,7 +88,6 @@ YEAH !</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -96,7 +95,8 @@ YEAH !</p>
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -115,18 +115,19 @@ YEAH !</p>
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</footer><!-- /.post-info -->
|
||||||
Multi-line metadata should be supported
|
<p class="first last">Multi-line metadata should be supported
|
||||||
as well as <strong>inline markup</strong>.
|
as well as <strong>inline markup</strong>.</p>
|
||||||
|
|
||||||
<a class="readmore" href=".././this-is-a-super-article.html">read more</a>
|
<a class="readmore" href=".././this-is-a-super-article.html">read more</a>
|
||||||
|
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>A Pelican Blog - bruno</title>
|
<title>A Pelican Blog - Dummy Author</title>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<link rel="stylesheet" href=".././theme/css/main.css" type="text/css" />
|
<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" />
|
<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/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>
|
||||||
|
|
||||||
|
|
@ -57,7 +57,7 @@
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</address>
|
||||||
|
|
||||||
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
|
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -77,7 +77,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -85,7 +84,8 @@
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -96,7 +96,7 @@
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</address>
|
||||||
|
|
||||||
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
|
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -112,7 +112,6 @@
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -120,7 +119,8 @@
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -131,7 +131,7 @@
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</address>
|
||||||
|
|
||||||
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
|
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -147,7 +147,6 @@
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -155,7 +154,8 @@
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -166,7 +166,7 @@
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</address>
|
||||||
|
|
||||||
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
|
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -182,7 +182,6 @@
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -190,7 +189,8 @@
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -201,10 +201,10 @@
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</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>
|
<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>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -230,7 +229,8 @@ Translations:
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -241,10 +241,10 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</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>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -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/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>
|
||||||
|
|
||||||
|
|
@ -44,13 +44,13 @@
|
||||||
|
|
||||||
<ul>
|
<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>
|
</ul>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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 ><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>
|
<li ><a href=".././category/yeah.html">yeah</a></li>
|
||||||
|
|
||||||
|
|
@ -85,8 +85,8 @@ YEAH !</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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 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>
|
<li ><a href=".././category/yeah.html">yeah</a></li>
|
||||||
|
|
||||||
|
|
@ -57,7 +57,7 @@
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</address>
|
||||||
|
|
||||||
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
|
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -77,7 +77,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -85,7 +84,8 @@
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -96,7 +96,7 @@
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</address>
|
||||||
|
|
||||||
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
|
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -112,7 +112,6 @@
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -120,7 +119,8 @@
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -131,7 +131,7 @@
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</address>
|
||||||
|
|
||||||
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
|
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -147,7 +147,6 @@
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -155,7 +154,8 @@
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -166,7 +166,7 @@
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</address>
|
||||||
|
|
||||||
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
|
<p>In <a href=".././category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -182,10 +182,10 @@
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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/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>
|
<li ><a href=".././category/yeah.html">yeah</a></li>
|
||||||
|
|
||||||
|
|
@ -57,7 +57,7 @@
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</address>
|
||||||
|
|
||||||
<p>In <a href=".././category/content.html">content</a>. </p>
|
<p>In <a href=".././category/content.html">content</a>. </p>
|
||||||
|
|
@ -102,7 +102,7 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</address>
|
||||||
|
|
||||||
<p>In <a href=".././category/content.html">content</a>. </p>
|
<p>In <a href=".././category/content.html">content</a>. </p>
|
||||||
|
|
|
||||||
147
tests/output/basic/category/misc.html
Normal file
147
tests/output/basic/category/misc.html
Normal 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>
|
||||||
|
|
@ -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/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>
|
<li class="active"><a href=".././category/yeah.html">yeah</a></li>
|
||||||
|
|
||||||
|
|
@ -86,8 +86,8 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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/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>
|
<li ><a href=".././category/yeah.html">yeah</a></li>
|
||||||
|
|
||||||
</ul></nav>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to A draft article">A draft article</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="a-draft-article.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
title="Permalink to A draft article">A draft article</a></h1>
|
||||||
<abbr class="published" title="2012-03-02T14:01:01">
|
|
||||||
Fri 02 March 2012
|
</header>
|
||||||
|
|
||||||
|
<div class="entry-content">
|
||||||
|
<footer class="post-info">
|
||||||
|
<abbr class="published" title="2012-05-19T23:55:50.764304">
|
||||||
|
Sat 19 May 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</address>
|
||||||
|
|
||||||
<p>In <a href=".././category/content.html">content</a>. </p>
|
<p>In <a href=".././category/misc.html">misc</a>. </p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</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>
|
listed anywhere else.</p>
|
||||||
|
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
|
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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"><p>This is some article, in english</p>
|
<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"><p>This is some article, in english</p>
|
||||||
</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"><p>You're mutually oblivious.</p></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"><p>Article 1</p>
|
</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"><p>You're mutually oblivious.</p></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"><p>Article 1</p>
|
||||||
</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"><p>Article 2</p>
|
</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"><p>Article 2</p>
|
||||||
</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"><p>Article 3</p>
|
</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"><p>Article 3</p>
|
||||||
</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"><p>Some content here !</p>
|
</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"><p>Some content here !</p>
|
||||||
<div class="section" id="this-is-a-simple-title">
|
<div class="section" id="this-is-a-simple-title">
|
||||||
<h2>This is a simple title</h2>
|
<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>
|
<p>And here comes the cool <a class="reference external" href="http://books.couchdb.org/relax/design-documents/views">stuff</a>.</p>
|
||||||
|
|
@ -15,11 +15,11 @@
|
||||||
</pre>
|
</pre>
|
||||||
<p>→ And now try with some utf8 hell: ééé</p>
|
<p>→ And now try with some utf8 hell: ééé</p>
|
||||||
</div>
|
</div>
|
||||||
</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"><div class="section" id="why-not">
|
</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"><div class="section" id="why-not">
|
||||||
<h2>Why not ?</h2>
|
<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 !
|
<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>
|
YEAH !</p>
|
||||||
<img alt="alternate text" src="pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
<img alt="alternate text" src="pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
||||||
</div>
|
</div>
|
||||||
</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"><p>Or completely awesome. Depends the needs.</p>
|
</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"><p>Or completely awesome. Depends the needs.</p>
|
||||||
</summary></entry></feed>
|
</summary></entry></feed>
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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"><p>Et voila du contenu en français</p>
|
<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"><p>Et voila du contenu en français</p>
|
||||||
</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"><p>Ceci est un article, en français.</p>
|
</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"><p>Ceci est un article, en français.</p>
|
||||||
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry></feed>
|
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry></feed>
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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"><p>This is some article, in english</p>
|
<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"><p>This is some article, in english</p>
|
||||||
</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"><p>You're mutually oblivious.</p></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"><p>Article 1</p>
|
</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"><p>You're mutually oblivious.</p></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"><p>Article 1</p>
|
||||||
</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"><p>Article 2</p>
|
</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"><p>Article 2</p>
|
||||||
</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"><p>Article 3</p>
|
</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"><p>Article 3</p>
|
||||||
</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"><p>Some content here !</p>
|
</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"><p>Some content here !</p>
|
||||||
<div class="section" id="this-is-a-simple-title">
|
<div class="section" id="this-is-a-simple-title">
|
||||||
<h2>This is a simple title</h2>
|
<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>
|
<p>And here comes the cool <a class="reference external" href="http://books.couchdb.org/relax/design-documents/views">stuff</a>.</p>
|
||||||
|
|
@ -15,11 +15,11 @@
|
||||||
</pre>
|
</pre>
|
||||||
<p>→ And now try with some utf8 hell: ééé</p>
|
<p>→ And now try with some utf8 hell: ééé</p>
|
||||||
</div>
|
</div>
|
||||||
</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"><div class="section" id="why-not">
|
</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"><div class="section" id="why-not">
|
||||||
<h2>Why not ?</h2>
|
<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 !
|
<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>
|
YEAH !</p>
|
||||||
<img alt="alternate text" src="pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
<img alt="alternate text" src="pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
||||||
</div>
|
</div>
|
||||||
</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"><p>Or completely awesome. Depends the needs.</p>
|
</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"><p>Or completely awesome. Depends the needs.</p>
|
||||||
</summary></entry></feed>
|
</summary></entry></feed>
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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"><div class="section" id="why-not">
|
<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"><div class="section" id="why-not">
|
||||||
<h2>Why not ?</h2>
|
<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 !
|
<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>
|
YEAH !</p>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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"><p>You're mutually oblivious.</p></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"><p>Article 1</p>
|
<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"><p>You're mutually oblivious.</p></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"><p>Article 1</p>
|
||||||
</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"><p>Article 2</p>
|
</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"><p>Article 2</p>
|
||||||
</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"><p>Article 3</p>
|
</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"><p>Article 3</p>
|
||||||
</summary></entry></feed>
|
</summary></entry></feed>
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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"><p>This is some article, in english</p>
|
<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"><p>This is some article, in english</p>
|
||||||
</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"><p>Or completely awesome. Depends the needs.</p>
|
</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"><p>Or completely awesome. Depends the needs.</p>
|
||||||
</summary></entry></feed>
|
</summary></entry></feed>
|
||||||
4
tests/output/basic/feeds/misc.atom.xml
Normal file
4
tests/output/basic/feeds/misc.atom.xml
Normal 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"><p>This is some article, in english</p>
|
||||||
|
</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"><p>Or completely awesome. Depends the needs.</p>
|
||||||
|
</summary></entry></feed>
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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"><p>Some content here !</p>
|
<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"><p>Some content here !</p>
|
||||||
<div class="section" id="this-is-a-simple-title">
|
<div class="section" id="this-is-a-simple-title">
|
||||||
<h2>This is a simple title</h2>
|
<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>
|
<p>And here comes the cool <a class="reference external" href="http://books.couchdb.org/relax/design-documents/views">stuff</a>.</p>
|
||||||
|
|
|
||||||
|
|
@ -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/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>
|
||||||
|
|
||||||
|
|
@ -57,10 +57,10 @@
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</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>
|
<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">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -102,7 +102,7 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</address>
|
||||||
|
|
||||||
<p>In <a href="./category/cat1.html">cat1</a>. </p>
|
<p>In <a href="./category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -117,7 +117,6 @@ Translations:
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -125,7 +124,8 @@ Translations:
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -136,7 +136,7 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</address>
|
||||||
|
|
||||||
<p>In <a href="./category/cat1.html">cat1</a>. </p>
|
<p>In <a href="./category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -152,7 +152,6 @@ Translations:
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -160,7 +159,8 @@ Translations:
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -171,7 +171,7 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</address>
|
||||||
|
|
||||||
<p>In <a href="./category/cat1.html">cat1</a>. </p>
|
<p>In <a href="./category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -187,7 +187,6 @@ Translations:
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -195,7 +194,8 @@ Translations:
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -206,7 +206,7 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</address>
|
||||||
|
|
||||||
<p>In <a href="./category/cat1.html">cat1</a>. </p>
|
<p>In <a href="./category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -222,7 +222,6 @@ Translations:
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -230,7 +229,8 @@ Translations:
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -249,15 +249,15 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</footer><!-- /.post-info -->
|
||||||
Multi-line metadata should be supported
|
<p class="first last">Multi-line metadata should be supported
|
||||||
as well as <strong>inline markup</strong>.
|
as well as <strong>inline markup</strong>.</p>
|
||||||
|
|
||||||
<a class="readmore" href="./this-is-a-super-article.html">read more</a>
|
<a class="readmore" href="./this-is-a-super-article.html">read more</a>
|
||||||
|
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -265,7 +265,8 @@ as well as <strong>inline markup</strong>.
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -302,7 +303,6 @@ YEAH !</p>
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -310,7 +310,8 @@ YEAH !</p>
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -321,10 +322,10 @@ YEAH !</p>
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</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>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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/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>
|
<li ><a href="./category/yeah.html">yeah</a></li>
|
||||||
|
|
||||||
</ul></nav>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to Trop bien !">Trop bien !</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="oh-yeah-fr.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
title="Permalink to Trop bien !">Trop bien !</a></h1>
|
||||||
<abbr class="published" title="2012-03-02T14:01:01">
|
|
||||||
Fri 02 March 2012
|
</header>
|
||||||
|
|
||||||
|
<div class="entry-content">
|
||||||
|
<footer class="post-info">
|
||||||
|
<abbr class="published" title="2012-05-19T23:55:50.764304">
|
||||||
|
Sat 19 May 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</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 -->
|
</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>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
|
|
@ -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 ><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>
|
<li ><a href="./category/yeah.html">yeah</a></li>
|
||||||
|
|
||||||
</ul></nav>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to Oh yeah !">Oh yeah !</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="oh-yeah.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
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">
|
<abbr class="published" title="2010-10-20T10:14:00">
|
||||||
Wed 20 October 2010
|
Wed 20 October 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
@ -67,17 +72,17 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</footer><!-- /.post-info -->
|
||||||
<div class="section" id="why-not">
|
<div class="section" id="why-not">
|
||||||
<h2>Why not ?</h2>
|
<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 !
|
<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>
|
YEAH !</p>
|
||||||
<img alt="alternate text" src="static/pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
<img alt="alternate text" src="static/pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
|
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
70
tests/output/basic/pages/this-is-a-test-hidden-page.html
Normal file
70
tests/output/basic/pages/this-is-a-test-hidden-page.html
Normal 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>
|
||||||
|
|
@ -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/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>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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/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>
|
<li ><a href="./category/yeah.html">yeah</a></li>
|
||||||
|
|
||||||
</ul></nav>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to Deuxième article">Deuxième article</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="second-article-fr.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
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">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Wed 29 February 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</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>
|
<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 -->
|
</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>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
|
|
@ -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/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>
|
<li ><a href="./category/yeah.html">yeah</a></li>
|
||||||
|
|
||||||
</ul></nav>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to Second article">Second article</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="second-article.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
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">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Wed 29 February 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</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>
|
<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 -->
|
</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>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
|
|
@ -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/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>
|
||||||
|
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
|
|
||||||
<aside id="featured" class="body">
|
<aside id="featured" class="body">
|
||||||
<article>
|
<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">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-02-29T00:00:00">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Wed 29 February 2012
|
||||||
|
|
@ -57,19 +57,19 @@
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</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>
|
<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:
|
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>
|
</article>
|
||||||
|
|
||||||
|
|
@ -83,7 +83,6 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -91,7 +90,8 @@ Translations:
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -102,28 +102,27 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</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>
|
<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:
|
Translations:
|
||||||
|
|
||||||
<a href=".././second-article-fr.html">fr</a>
|
<a href=".././second-article.html">en</a>
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</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 -->
|
</div><!-- /.entry-content -->
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -131,7 +130,8 @@ Translations:
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -150,15 +150,15 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</footer><!-- /.post-info -->
|
||||||
Multi-line metadata should be supported
|
<p class="first last">Multi-line metadata should be supported
|
||||||
as well as <strong>inline markup</strong>.
|
as well as <strong>inline markup</strong>.</p>
|
||||||
|
|
||||||
<a class="readmore" href=".././this-is-a-super-article.html">read more</a>
|
<a class="readmore" href=".././this-is-a-super-article.html">read more</a>
|
||||||
|
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -166,7 +166,8 @@ as well as <strong>inline markup</strong>.
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -203,10 +204,10 @@ YEAH !</p>
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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/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>
|
||||||
|
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
|
|
||||||
<aside id="featured" class="body">
|
<aside id="featured" class="body">
|
||||||
<article>
|
<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">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-02-29T00:00:00">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Wed 29 February 2012
|
||||||
|
|
@ -57,19 +57,19 @@
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</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>
|
<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:
|
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>
|
</article>
|
||||||
|
|
||||||
|
|
@ -83,7 +83,6 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -91,7 +90,8 @@ Translations:
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -102,31 +102,31 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</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>
|
<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:
|
Translations:
|
||||||
|
|
||||||
<a href=".././second-article-fr.html">fr</a>
|
<a href=".././second-article.html">en</a>
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</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 -->
|
</div><!-- /.entry-content -->
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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/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>
|
||||||
|
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
|
|
||||||
<aside id="featured" class="body">
|
<aside id="featured" class="body">
|
||||||
<article>
|
<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">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-02-29T00:00:00">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Wed 29 February 2012
|
||||||
|
|
@ -57,19 +57,19 @@
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</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>
|
<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:
|
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>
|
</article>
|
||||||
|
|
||||||
|
|
@ -83,7 +83,6 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -91,7 +90,8 @@ Translations:
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -102,28 +102,27 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</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>
|
<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:
|
Translations:
|
||||||
|
|
||||||
<a href=".././second-article-fr.html">fr</a>
|
<a href=".././second-article.html">en</a>
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</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 -->
|
</div><!-- /.entry-content -->
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -131,7 +130,8 @@ Translations:
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -150,18 +150,19 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</footer><!-- /.post-info -->
|
||||||
Multi-line metadata should be supported
|
<p class="first last">Multi-line metadata should be supported
|
||||||
as well as <strong>inline markup</strong>.
|
as well as <strong>inline markup</strong>.</p>
|
||||||
|
|
||||||
<a class="readmore" href=".././this-is-a-super-article.html">read more</a>
|
<a class="readmore" href=".././this-is-a-super-article.html">read more</a>
|
||||||
|
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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/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>
|
||||||
|
|
||||||
|
|
@ -86,8 +86,8 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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/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>
|
||||||
|
|
||||||
|
|
@ -85,8 +85,8 @@ YEAH !</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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/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>
|
||||||
|
|
||||||
|
|
@ -85,8 +85,8 @@ YEAH !</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -111,6 +111,13 @@ cite {}
|
||||||
|
|
||||||
q {}
|
q {}
|
||||||
|
|
||||||
|
div.note {
|
||||||
|
float: right;
|
||||||
|
margin: 5px;
|
||||||
|
font-size: 85%;
|
||||||
|
max-width: 300px;
|
||||||
|
}
|
||||||
|
|
||||||
/* Tables */
|
/* Tables */
|
||||||
table {margin: .5em auto 1.5em auto; width: 98%;}
|
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[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*='twitter.com'] {background-image: url('../images/icons/twitter.png');}
|
||||||
.social a[href*='linkedin.com'] {background-image: url('../images/icons/linkedin.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
|
About
|
||||||
|
|
|
||||||
|
|
@ -4,13 +4,17 @@ body {
|
||||||
font:1.3em/1.3 "Hoefler Text","Georgia",Georgia,serif,sans-serif;
|
font:1.3em/1.3 "Hoefler Text","Georgia",Georgia,serif,sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
.body, #banner nav, #banner nav ul, #about, #featured, #content{
|
.post-info{
|
||||||
width: inherit;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#banner nav {
|
#banner nav {
|
||||||
|
display: none;
|
||||||
-moz-border-radius: 0px;
|
-moz-border-radius: 0px;
|
||||||
margin-bottom: 0px;
|
margin-bottom: 20px;
|
||||||
|
overflow: hidden;
|
||||||
|
font-size: 1em;
|
||||||
|
background: #F5F4EF;
|
||||||
}
|
}
|
||||||
|
|
||||||
#banner nav ul{
|
#banner nav ul{
|
||||||
|
|
@ -19,10 +23,11 @@ body {
|
||||||
|
|
||||||
#banner nav li{
|
#banner nav li{
|
||||||
float: right;
|
float: right;
|
||||||
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
#banner nav li:first-child a {
|
#banner nav li a {
|
||||||
-moz-border-radius: 0px;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
#banner h1 {
|
#banner h1 {
|
||||||
|
|
|
||||||
BIN
tests/output/basic/theme/images/icons/facebook.png
Normal file
BIN
tests/output/basic/theme/images/icons/facebook.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 300 B |
BIN
tests/output/basic/theme/images/icons/gitorious.png
Normal file
BIN
tests/output/basic/theme/images/icons/gitorious.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.6 KiB |
|
|
@ -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/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>
|
<li class="active"><a href="./category/yeah.html">yeah</a></li>
|
||||||
|
|
||||||
</ul></nav>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to This is a super article !">This is a super article !</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="this-is-a-super-article.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
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">
|
<abbr class="published" title="2010-12-02T10:14:00">
|
||||||
Thu 02 December 2010
|
Thu 02 December 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
@ -62,7 +67,7 @@
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</footer><!-- /.post-info -->
|
||||||
<p>Some content here !</p>
|
<p>Some content here !</p>
|
||||||
<div class="section" id="this-is-a-simple-title">
|
<div class="section" id="this-is-a-simple-title">
|
||||||
<h2>This is a simple title</h2>
|
<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>
|
<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>
|
<p>→ And now try with some utf8 hell: ééé</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
|
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
|
|
@ -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/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>
|
<li ><a href="./category/yeah.html">yeah</a></li>
|
||||||
|
|
||||||
</ul></nav>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to Unbelievable !">Unbelievable !</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="unbelievable.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
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">
|
<abbr class="published" title="2010-10-15T20:30:00">
|
||||||
Fri 15 October 2010
|
Fri 15 October 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
|
|
||||||
<address class="vcard author">
|
<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>
|
</address>
|
||||||
|
|
||||||
<p>In <a href="./category/content.html">content</a>. </p>
|
<p>In <a href="./category/misc.html">misc</a>. </p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</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>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
|
|
@ -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 class="active"><a href="./category/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href="./category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to A markdown powered article">A markdown powered article</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="a-markdown-powered-article.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
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">
|
<abbr class="published" title="2011-04-20T00:00:00">
|
||||||
Wed 20 April 2011
|
Wed 20 April 2011
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
@ -70,24 +75,24 @@
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</footer><!-- /.post-info -->
|
||||||
<p>You're mutually oblivious.</p>
|
<p>You're mutually oblivious.</p>
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
|
|
||||||
<div class="comments">
|
<div class="comments">
|
||||||
<h2>Comments !</h2>
|
<h2>Comments !</h2>
|
||||||
<div id="disqus_thread"></div>
|
<div id="disqus_thread"></div>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var disqus_identifier = "a-markdown-powered-article.html";
|
var disqus_identifier = "a-markdown-powered-article.html";
|
||||||
(function() {
|
(function() {
|
||||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||||
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
||||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
|
|
@ -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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href="./category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
|
|
@ -56,28 +56,28 @@
|
||||||
<dl>
|
<dl>
|
||||||
|
|
||||||
<dt>Fri 15 October 2010</dt>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
</dl>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
||||||
|
|
@ -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 class="active"><a href="./category/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href="./category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to Article 1">Article 1</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="article-1.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
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">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Thu 17 February 2011
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
@ -70,25 +75,25 @@
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</footer><!-- /.post-info -->
|
||||||
<p>Article 1</p>
|
<p>Article 1</p>
|
||||||
|
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
|
|
||||||
<div class="comments">
|
<div class="comments">
|
||||||
<h2>Comments !</h2>
|
<h2>Comments !</h2>
|
||||||
<div id="disqus_thread"></div>
|
<div id="disqus_thread"></div>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var disqus_identifier = "article-1.html";
|
var disqus_identifier = "article-1.html";
|
||||||
(function() {
|
(function() {
|
||||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||||
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
||||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
|
|
@ -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 class="active"><a href="./category/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href="./category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to Article 2">Article 2</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="article-2.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
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">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Thu 17 February 2011
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
@ -70,25 +75,25 @@
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</footer><!-- /.post-info -->
|
||||||
<p>Article 2</p>
|
<p>Article 2</p>
|
||||||
|
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
|
|
||||||
<div class="comments">
|
<div class="comments">
|
||||||
<h2>Comments !</h2>
|
<h2>Comments !</h2>
|
||||||
<div id="disqus_thread"></div>
|
<div id="disqus_thread"></div>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var disqus_identifier = "article-2.html";
|
var disqus_identifier = "article-2.html";
|
||||||
(function() {
|
(function() {
|
||||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||||
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
||||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
|
|
@ -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 class="active"><a href="./category/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href="./category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to Article 3">Article 3</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="article-3.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
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">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Thu 17 February 2011
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
@ -70,25 +75,25 @@
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</footer><!-- /.post-info -->
|
||||||
<p>Article 3</p>
|
<p>Article 3</p>
|
||||||
|
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
|
|
||||||
<div class="comments">
|
<div class="comments">
|
||||||
<h2>Comments !</h2>
|
<h2>Comments !</h2>
|
||||||
<div id="disqus_thread"></div>
|
<div id="disqus_thread"></div>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var disqus_identifier = "article-3.html";
|
var disqus_identifier = "article-3.html";
|
||||||
(function() {
|
(function() {
|
||||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||||
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
||||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
|
|
@ -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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href=".././category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
|
|
@ -85,7 +85,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -93,7 +92,8 @@
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -120,7 +120,6 @@
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -128,7 +127,8 @@
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -155,7 +155,6 @@
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -163,7 +162,8 @@
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -190,7 +190,9 @@
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
|
|
||||||
<p class="paginator">
|
<p class="paginator">
|
||||||
|
|
||||||
Page 1 / 2
|
Page 1 / 2
|
||||||
|
|
@ -199,9 +201,7 @@
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href=".././category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
|
|
@ -61,7 +61,8 @@
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -98,7 +99,6 @@ YEAH !</p>
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -106,7 +106,8 @@ YEAH !</p>
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -120,7 +121,7 @@ YEAH !</p>
|
||||||
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
|
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
|
||||||
</address>
|
</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>
|
<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>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -146,7 +146,8 @@ Translations:
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -165,15 +166,15 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</footer><!-- /.post-info -->
|
||||||
Multi-line metadata should be supported
|
<p class="first last">Multi-line metadata should be supported
|
||||||
as well as <strong>inline markup</strong>.
|
as well as <strong>inline markup</strong>.</p>
|
||||||
|
|
||||||
<a class="readmore" href=".././this-is-a-super-article.html">read more</a>
|
<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>
|
<p>There are <a href=".././this-is-a-super-article.html#disqus_thread">comments</a>.</p>
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -181,7 +182,8 @@ as well as <strong>inline markup</strong>.
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<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>
|
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
|
||||||
</address>
|
</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>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
|
|
||||||
<p class="paginator">
|
<p class="paginator">
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -219,9 +223,7 @@ as well as <strong>inline markup</strong>.
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href="./category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<ul>
|
<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>
|
</ul>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li class="active"><a href=".././category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
|
|
@ -99,8 +99,8 @@ YEAH !</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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 class="active"><a href=".././category/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href=".././category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
|
|
@ -85,7 +85,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -93,7 +92,8 @@
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -120,7 +120,6 @@
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -128,7 +127,8 @@
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -155,7 +155,6 @@
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -163,7 +162,8 @@
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -190,16 +190,16 @@
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
|
|
||||||
<p class="paginator">
|
<p class="paginator">
|
||||||
|
|
||||||
Page 1 / 1
|
Page 1 / 1
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>Alexis' log - content</title>
|
<title>Alexis' log - misc</title>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<link rel="stylesheet" href=".././theme/css/main.css" type="text/css" />
|
<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.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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href=".././category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
|
|
@ -68,7 +68,7 @@
|
||||||
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
|
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
|
||||||
</address>
|
</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>
|
<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">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -113,7 +113,7 @@ Translations:
|
||||||
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
|
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
|
||||||
</address>
|
</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>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
|
|
||||||
<p class="paginator">
|
<p class="paginator">
|
||||||
|
|
||||||
Page 1 / 1
|
Page 1 / 1
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href=".././category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
|
|
@ -100,8 +100,8 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href=".././category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to A draft article">A draft article</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="a-draft-article.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
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">
|
<abbr class="published" title="2012-03-02T14:01:01">
|
||||||
Fri 02 March 2012
|
Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
@ -65,31 +70,31 @@
|
||||||
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
|
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
|
||||||
</address>
|
</address>
|
||||||
|
|
||||||
<p>In <a href=".././category/content.html">content</a>. </p>
|
<p>In <a href=".././category/misc.html">misc</a>. </p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</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>
|
listed anywhere else.</p>
|
||||||
|
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
|
|
||||||
<div class="comments">
|
<div class="comments">
|
||||||
<h2>Comments !</h2>
|
<h2>Comments !</h2>
|
||||||
<div id="disqus_thread"></div>
|
<div id="disqus_thread"></div>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var disqus_identifier = "a-draft-article.html";
|
var disqus_identifier = "a-draft-article.html";
|
||||||
(function() {
|
(function() {
|
||||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||||
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
||||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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"><p>This is some article, in english</p>
|
<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"><p>This is some article, in english</p>
|
||||||
</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"><p>You're mutually oblivious.</p></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"><p>Article 1</p>
|
</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"><p>You're mutually oblivious.</p></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"><p>Article 1</p>
|
||||||
</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"><p>Article 2</p>
|
</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"><p>Article 2</p>
|
||||||
</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"><p>Article 3</p>
|
</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"><p>Article 3</p>
|
||||||
</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"><p>Some content here !</p>
|
</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"><p>Some content here !</p>
|
||||||
<div class="section" id="this-is-a-simple-title">
|
<div class="section" id="this-is-a-simple-title">
|
||||||
<h2>This is a simple title</h2>
|
<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>
|
<p>And here comes the cool <a class="reference external" href="http://books.couchdb.org/relax/design-documents/views">stuff</a>.</p>
|
||||||
|
|
@ -15,11 +15,11 @@
|
||||||
</pre>
|
</pre>
|
||||||
<p>→ And now try with some utf8 hell: ééé</p>
|
<p>→ And now try with some utf8 hell: ééé</p>
|
||||||
</div>
|
</div>
|
||||||
</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"><div class="section" id="why-not">
|
</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"><div class="section" id="why-not">
|
||||||
<h2>Why not ?</h2>
|
<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 !
|
<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>
|
YEAH !</p>
|
||||||
<img alt="alternate text" src="pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
<img alt="alternate text" src="pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
||||||
</div>
|
</div>
|
||||||
</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"><p>Or completely awesome. Depends the needs.</p>
|
</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"><p>Or completely awesome. Depends the needs.</p>
|
||||||
</summary></entry></feed>
|
</summary></entry></feed>
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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"><p>Et voila du contenu en français</p>
|
<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"><p>Et voila du contenu en français</p>
|
||||||
</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"><p>Ceci est un article, en français.</p>
|
</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"><p>Ceci est un article, en français.</p>
|
||||||
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry></feed>
|
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry></feed>
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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"><p>This is some article, in english</p>
|
<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"><p>This is some article, in english</p>
|
||||||
</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"><p>You're mutually oblivious.</p></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"><p>Article 1</p>
|
</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"><p>You're mutually oblivious.</p></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"><p>Article 1</p>
|
||||||
</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"><p>Article 2</p>
|
</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"><p>Article 2</p>
|
||||||
</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"><p>Article 3</p>
|
</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"><p>Article 3</p>
|
||||||
</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"><p>Some content here !</p>
|
</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"><p>Some content here !</p>
|
||||||
<div class="section" id="this-is-a-simple-title">
|
<div class="section" id="this-is-a-simple-title">
|
||||||
<h2>This is a simple title</h2>
|
<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>
|
<p>And here comes the cool <a class="reference external" href="http://books.couchdb.org/relax/design-documents/views">stuff</a>.</p>
|
||||||
|
|
@ -15,11 +15,11 @@
|
||||||
</pre>
|
</pre>
|
||||||
<p>→ And now try with some utf8 hell: ééé</p>
|
<p>→ And now try with some utf8 hell: ééé</p>
|
||||||
</div>
|
</div>
|
||||||
</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"><div class="section" id="why-not">
|
</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"><div class="section" id="why-not">
|
||||||
<h2>Why not ?</h2>
|
<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 !
|
<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>
|
YEAH !</p>
|
||||||
<img alt="alternate text" src="pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
<img alt="alternate text" src="pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
||||||
</div>
|
</div>
|
||||||
</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"><p>Or completely awesome. Depends the needs.</p>
|
</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"><p>Or completely awesome. Depends the needs.</p>
|
||||||
</summary></entry></feed>
|
</summary></entry></feed>
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
<?xml version="1.0" encoding="utf-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/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><p>This is some article, in english</p>
|
<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><p>This is some article, in english</p>
|
||||||
</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><p>You're mutually oblivious.</p></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><p>Article 1</p>
|
</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><p>You're mutually oblivious.</p></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><p>Article 1</p>
|
||||||
</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><p>Article 2</p>
|
</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><p>Article 2</p>
|
||||||
</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><p>Article 3</p>
|
</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><p>Article 3</p>
|
||||||
</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><p>Some content here !</p>
|
</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><p>Some content here !</p>
|
||||||
<div class="section" id="this-is-a-simple-title">
|
<div class="section" id="this-is-a-simple-title">
|
||||||
<h2>This is a simple title</h2>
|
<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>
|
<p>And here comes the cool <a class="reference external" href="http://books.couchdb.org/relax/design-documents/views">stuff</a>.</p>
|
||||||
|
|
@ -15,11 +15,11 @@
|
||||||
</pre>
|
</pre>
|
||||||
<p>→ And now try with some utf8 hell: ééé</p>
|
<p>→ And now try with some utf8 hell: ééé</p>
|
||||||
</div>
|
</div>
|
||||||
</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><div class="section" id="why-not">
|
</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><div class="section" id="why-not">
|
||||||
<h2>Why not ?</h2>
|
<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 !
|
<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>
|
YEAH !</p>
|
||||||
<img alt="alternate text" src="pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
<img alt="alternate text" src="pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
||||||
</div>
|
</div>
|
||||||
</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><p>Or completely awesome. Depends the needs.</p>
|
</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><p>Or completely awesome. Depends the needs.</p>
|
||||||
</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>Fri, 15 Oct 2010 20:30:00 +0200</pubDate><guid>tag:blog.notmyidea.org,2010-10-15:unbelievable.html</guid></item></channel></rss>
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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"><div class="section" id="why-not">
|
<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"><div class="section" id="why-not">
|
||||||
<h2>Why not ?</h2>
|
<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 !
|
<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>
|
YEAH !</p>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
<?xml version="1.0" encoding="utf-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><div class="section" id="why-not">
|
<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><div class="section" id="why-not">
|
||||||
<h2>Why not ?</h2>
|
<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 !
|
<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>
|
YEAH !</p>
|
||||||
<img alt="alternate text" src="pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
<img alt="alternate text" src="pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
||||||
</div>
|
</div>
|
||||||
</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>
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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"><p>You're mutually oblivious.</p></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"><p>Article 1</p>
|
<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"><p>You're mutually oblivious.</p></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"><p>Article 1</p>
|
||||||
</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"><p>Article 2</p>
|
</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"><p>Article 2</p>
|
||||||
</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"><p>Article 3</p>
|
</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"><p>Article 3</p>
|
||||||
</summary></entry></feed>
|
</summary></entry></feed>
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-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/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><p>You're mutually oblivious.</p></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><p>Article 1</p>
|
<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><p>You're mutually oblivious.</p></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><p>Article 1</p>
|
||||||
</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><p>Article 2</p>
|
</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><p>Article 2</p>
|
||||||
</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><p>Article 3</p>
|
</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><p>Article 3</p>
|
||||||
</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>
|
</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>
|
||||||
|
|
@ -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"><p>This is some article, in english</p>
|
|
||||||
</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"><p>Or completely awesome. Depends the needs.</p>
|
|
||||||
</summary></entry></feed>
|
|
||||||
|
|
@ -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><p>This is some article, in english</p>
|
|
||||||
</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><p>Or completely awesome. Depends the needs.</p>
|
|
||||||
</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>
|
|
||||||
4
tests/output/custom/feeds/misc.atom.xml
Normal file
4
tests/output/custom/feeds/misc.atom.xml
Normal 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"><p>This is some article, in english</p>
|
||||||
|
</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"><p>Or completely awesome. Depends the needs.</p>
|
||||||
|
</summary></entry></feed>
|
||||||
4
tests/output/custom/feeds/misc.rss.xml
Normal file
4
tests/output/custom/feeds/misc.rss.xml
Normal 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><p>This is some article, in english</p>
|
||||||
|
</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><p>Or completely awesome. Depends the needs.</p>
|
||||||
|
</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>
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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"><p>Some content here !</p>
|
<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"><p>Some content here !</p>
|
||||||
<div class="section" id="this-is-a-simple-title">
|
<div class="section" id="this-is-a-simple-title">
|
||||||
<h2>This is a simple title</h2>
|
<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>
|
<p>And here comes the cool <a class="reference external" href="http://books.couchdb.org/relax/design-documents/views">stuff</a>.</p>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-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/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><p>Some content here !</p>
|
<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><p>Some content here !</p>
|
||||||
<div class="section" id="this-is-a-simple-title">
|
<div class="section" id="this-is-a-simple-title">
|
||||||
<h2>This is a simple title</h2>
|
<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>
|
<p>And here comes the cool <a class="reference external" href="http://books.couchdb.org/relax/design-documents/views">stuff</a>.</p>
|
||||||
|
|
@ -11,4 +11,4 @@
|
||||||
</pre>
|
</pre>
|
||||||
<p>→ And now try with some utf8 hell: ééé</p>
|
<p>→ And now try with some utf8 hell: ééé</p>
|
||||||
</div>
|
</div>
|
||||||
</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>
|
||||||
|
|
@ -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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href="./category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
|
|
@ -68,7 +68,7 @@
|
||||||
By <a class="url fn" href="./author/alexis-metaireau.html">Alexis Métaireau</a>
|
By <a class="url fn" href="./author/alexis-metaireau.html">Alexis Métaireau</a>
|
||||||
</address>
|
</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>
|
<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">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -125,7 +125,6 @@ Translations:
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -133,7 +132,8 @@ Translations:
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -160,7 +160,6 @@ Translations:
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -168,7 +167,8 @@ Translations:
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -195,7 +195,9 @@ Translations:
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
|
|
||||||
<p class="paginator">
|
<p class="paginator">
|
||||||
|
|
||||||
Page 1 / 2
|
Page 1 / 2
|
||||||
|
|
@ -204,9 +206,7 @@ Translations:
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href="./category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
|
|
@ -61,7 +61,8 @@
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -88,7 +89,6 @@
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -96,7 +96,8 @@
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -115,15 +116,15 @@
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</footer><!-- /.post-info -->
|
||||||
Multi-line metadata should be supported
|
<p class="first last">Multi-line metadata should be supported
|
||||||
as well as <strong>inline markup</strong>.
|
as well as <strong>inline markup</strong>.</p>
|
||||||
|
|
||||||
<a class="readmore" href="./this-is-a-super-article.html">read more</a>
|
<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>
|
<p>There are <a href="./this-is-a-super-article.html#disqus_thread">comments</a>.</p>
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -131,7 +132,8 @@ as well as <strong>inline markup</strong>.
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -168,7 +170,6 @@ YEAH !</p>
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -176,7 +177,8 @@ YEAH !</p>
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -190,7 +192,7 @@ YEAH !</p>
|
||||||
By <a class="url fn" href="./author/alexis-metaireau.html">Alexis Métaireau</a>
|
By <a class="url fn" href="./author/alexis-metaireau.html">Alexis Métaireau</a>
|
||||||
</address>
|
</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>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
|
|
||||||
<p class="paginator">
|
<p class="paginator">
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -214,9 +218,7 @@ YEAH !</p>
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href="./category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to Trop bien !">Trop bien !</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="oh-yeah-fr.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
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">
|
<abbr class="published" title="2012-03-02T14:01:01">
|
||||||
Fri 02 March 2012
|
Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
@ -65,7 +70,7 @@
|
||||||
By <a class="url fn" href="./author/alexis-metaireau.html">Alexis Métaireau</a>
|
By <a class="url fn" href="./author/alexis-metaireau.html">Alexis Métaireau</a>
|
||||||
</address>
|
</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 -->
|
</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 -->
|
||||||
|
|
||||||
<div class="comments">
|
<div class="comments">
|
||||||
<h2>Comments !</h2>
|
<h2>Comments !</h2>
|
||||||
<div id="disqus_thread"></div>
|
<div id="disqus_thread"></div>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var disqus_identifier = "oh-yeah-fr.html";
|
var disqus_identifier = "oh-yeah-fr.html";
|
||||||
(function() {
|
(function() {
|
||||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||||
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
||||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
|
|
@ -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 ><a href="./category/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li class="active"><a href="./category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to Oh yeah !">Oh yeah !</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="oh-yeah.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
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">
|
<abbr class="published" title="2010-10-20T10:14:00">
|
||||||
Wed 20 October 2010
|
Wed 20 October 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
@ -75,30 +80,30 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</footer><!-- /.post-info -->
|
||||||
<div class="section" id="why-not">
|
<div class="section" id="why-not">
|
||||||
<h2>Why not ?</h2>
|
<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 !
|
<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>
|
YEAH !</p>
|
||||||
<img alt="alternate text" src="static/pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
<img alt="alternate text" src="static/pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
|
|
||||||
<div class="comments">
|
<div class="comments">
|
||||||
<h2>Comments !</h2>
|
<h2>Comments !</h2>
|
||||||
<div id="disqus_thread"></div>
|
<div id="disqus_thread"></div>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var disqus_identifier = "oh-yeah.html";
|
var disqus_identifier = "oh-yeah.html";
|
||||||
(function() {
|
(function() {
|
||||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||||
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
||||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
125
tests/output/custom/pages/this-is-a-test-hidden-page.html
Normal file
125
tests/output/custom/pages/this-is-a-test-hidden-page.html
Normal 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>
|
||||||
|
|
@ -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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href=".././category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href="./category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to Deuxième article">Deuxième article</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="second-article-fr.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
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">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Wed 29 February 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
@ -65,7 +70,7 @@
|
||||||
By <a class="url fn" href="./author/alexis-metaireau.html">Alexis Métaireau</a>
|
By <a class="url fn" href="./author/alexis-metaireau.html">Alexis Métaireau</a>
|
||||||
</address>
|
</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>
|
<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 -->
|
</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 -->
|
||||||
|
|
||||||
<div class="comments">
|
<div class="comments">
|
||||||
<h2>Comments !</h2>
|
<h2>Comments !</h2>
|
||||||
<div id="disqus_thread"></div>
|
<div id="disqus_thread"></div>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var disqus_identifier = "second-article-fr.html";
|
var disqus_identifier = "second-article-fr.html";
|
||||||
(function() {
|
(function() {
|
||||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||||
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
||||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
|
|
@ -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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href="./category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to Second article">Second article</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="second-article.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
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">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Wed 29 February 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
@ -65,7 +70,7 @@
|
||||||
By <a class="url fn" href="./author/alexis-metaireau.html">Alexis Métaireau</a>
|
By <a class="url fn" href="./author/alexis-metaireau.html">Alexis Métaireau</a>
|
||||||
</address>
|
</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>
|
<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 -->
|
</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 -->
|
||||||
|
|
||||||
<div class="comments">
|
<div class="comments">
|
||||||
<h2>Comments !</h2>
|
<h2>Comments !</h2>
|
||||||
<div id="disqus_thread"></div>
|
<div id="disqus_thread"></div>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var disqus_identifier = "second-article.html";
|
var disqus_identifier = "second-article.html";
|
||||||
(function() {
|
(function() {
|
||||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||||
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
||||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
|
|
@ -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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href=".././category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
|
|
@ -57,7 +57,7 @@
|
||||||
|
|
||||||
<aside id="featured" class="body">
|
<aside id="featured" class="body">
|
||||||
<article>
|
<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">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-02-29T00:00:00">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Wed 29 February 2012
|
||||||
|
|
@ -68,17 +68,17 @@
|
||||||
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
|
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
|
||||||
</address>
|
</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>
|
<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:
|
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>
|
||||||
<p>There are <a href=".././second-article-fr.html#disqus_thread">comments</a>.</p>
|
<p>There are <a href=".././second-article.html#disqus_thread">comments</a>.</p>
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
</aside><!-- /#featured -->
|
</aside><!-- /#featured -->
|
||||||
|
|
@ -91,7 +91,6 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -99,7 +98,8 @@ Translations:
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -113,25 +113,24 @@ Translations:
|
||||||
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
|
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
|
||||||
</address>
|
</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>
|
<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:
|
Translations:
|
||||||
|
|
||||||
<a href=".././second-article-fr.html">fr</a>
|
<a href=".././second-article.html">en</a>
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</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>
|
||||||
<p>There are <a href=".././second-article.html#disqus_thread">comments</a>.</p>
|
<p>There are <a href=".././second-article-fr.html#disqus_thread">comments</a>.</p>
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -139,7 +138,8 @@ Translations:
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -158,15 +158,15 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</footer><!-- /.post-info -->
|
||||||
Multi-line metadata should be supported
|
<p class="first last">Multi-line metadata should be supported
|
||||||
as well as <strong>inline markup</strong>.
|
as well as <strong>inline markup</strong>.</p>
|
||||||
|
|
||||||
<a class="readmore" href=".././this-is-a-super-article.html">read more</a>
|
<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>
|
<p>There are <a href=".././this-is-a-super-article.html#disqus_thread">comments</a>.</p>
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -174,7 +174,8 @@ as well as <strong>inline markup</strong>.
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -211,16 +212,16 @@ YEAH !</p>
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
|
|
||||||
<p class="paginator">
|
<p class="paginator">
|
||||||
|
|
||||||
Page 1 / 1
|
Page 1 / 1
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href=".././category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
|
|
@ -57,7 +57,7 @@
|
||||||
|
|
||||||
<aside id="featured" class="body">
|
<aside id="featured" class="body">
|
||||||
<article>
|
<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">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-02-29T00:00:00">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Wed 29 February 2012
|
||||||
|
|
@ -68,17 +68,17 @@
|
||||||
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
|
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
|
||||||
</address>
|
</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>
|
<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:
|
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>
|
||||||
<p>There are <a href=".././second-article-fr.html#disqus_thread">comments</a>.</p>
|
<p>There are <a href=".././second-article.html#disqus_thread">comments</a>.</p>
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
</aside><!-- /#featured -->
|
</aside><!-- /#featured -->
|
||||||
|
|
@ -91,7 +91,6 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -99,7 +98,8 @@ Translations:
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -113,34 +113,34 @@ Translations:
|
||||||
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
|
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
|
||||||
</address>
|
</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>
|
<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:
|
Translations:
|
||||||
|
|
||||||
<a href=".././second-article-fr.html">fr</a>
|
<a href=".././second-article.html">en</a>
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</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>
|
||||||
<p>There are <a href=".././second-article.html#disqus_thread">comments</a>.</p>
|
<p>There are <a href=".././second-article-fr.html#disqus_thread">comments</a>.</p>
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
|
|
||||||
<p class="paginator">
|
<p class="paginator">
|
||||||
|
|
||||||
Page 1 / 1
|
Page 1 / 1
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href=".././category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
|
|
@ -57,7 +57,7 @@
|
||||||
|
|
||||||
<aside id="featured" class="body">
|
<aside id="featured" class="body">
|
||||||
<article>
|
<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">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-02-29T00:00:00">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Wed 29 February 2012
|
||||||
|
|
@ -68,17 +68,17 @@
|
||||||
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
|
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
|
||||||
</address>
|
</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>
|
<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:
|
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>
|
||||||
<p>There are <a href=".././second-article-fr.html#disqus_thread">comments</a>.</p>
|
<p>There are <a href=".././second-article.html#disqus_thread">comments</a>.</p>
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
</aside><!-- /#featured -->
|
</aside><!-- /#featured -->
|
||||||
|
|
@ -91,7 +91,6 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -99,7 +98,8 @@ Translations:
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -113,25 +113,24 @@ Translations:
|
||||||
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
|
By <a class="url fn" href=".././author/alexis-metaireau.html">Alexis Métaireau</a>
|
||||||
</address>
|
</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>
|
<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:
|
Translations:
|
||||||
|
|
||||||
<a href=".././second-article-fr.html">fr</a>
|
<a href=".././second-article.html">en</a>
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</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>
|
||||||
<p>There are <a href=".././second-article.html#disqus_thread">comments</a>.</p>
|
<p>There are <a href=".././second-article-fr.html#disqus_thread">comments</a>.</p>
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -139,7 +138,8 @@ Translations:
|
||||||
|
|
||||||
<li><article class="hentry">
|
<li><article class="hentry">
|
||||||
<header>
|
<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>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
@ -158,24 +158,25 @@ Translations:
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</footer><!-- /.post-info -->
|
||||||
Multi-line metadata should be supported
|
<p class="first last">Multi-line metadata should be supported
|
||||||
as well as <strong>inline markup</strong>.
|
as well as <strong>inline markup</strong>.</p>
|
||||||
|
|
||||||
<a class="readmore" href=".././this-is-a-super-article.html">read more</a>
|
<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>
|
<p>There are <a href=".././this-is-a-super-article.html#disqus_thread">comments</a>.</p>
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
</article></li>
|
</article></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
|
|
||||||
<p class="paginator">
|
<p class="paginator">
|
||||||
|
|
||||||
Page 1 / 1
|
Page 1 / 1
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href=".././category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
|
|
@ -100,8 +100,8 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href=".././category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
|
|
@ -99,8 +99,8 @@ YEAH !</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href=".././category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
|
|
@ -99,8 +99,8 @@ YEAH !</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol><!-- /#posts-list -->
|
</ol><!-- /#posts-list -->
|
||||||
|
|
||||||
</section><!-- /#content -->
|
</section><!-- /#content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -111,6 +111,13 @@ cite {}
|
||||||
|
|
||||||
q {}
|
q {}
|
||||||
|
|
||||||
|
div.note {
|
||||||
|
float: right;
|
||||||
|
margin: 5px;
|
||||||
|
font-size: 85%;
|
||||||
|
max-width: 300px;
|
||||||
|
}
|
||||||
|
|
||||||
/* Tables */
|
/* Tables */
|
||||||
table {margin: .5em auto 1.5em auto; width: 98%;}
|
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[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*='twitter.com'] {background-image: url('../images/icons/twitter.png');}
|
||||||
.social a[href*='linkedin.com'] {background-image: url('../images/icons/linkedin.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
|
About
|
||||||
|
|
|
||||||
|
|
@ -4,13 +4,17 @@ body {
|
||||||
font:1.3em/1.3 "Hoefler Text","Georgia",Georgia,serif,sans-serif;
|
font:1.3em/1.3 "Hoefler Text","Georgia",Georgia,serif,sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
.body, #banner nav, #banner nav ul, #about, #featured, #content{
|
.post-info{
|
||||||
width: inherit;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#banner nav {
|
#banner nav {
|
||||||
|
display: none;
|
||||||
-moz-border-radius: 0px;
|
-moz-border-radius: 0px;
|
||||||
margin-bottom: 0px;
|
margin-bottom: 20px;
|
||||||
|
overflow: hidden;
|
||||||
|
font-size: 1em;
|
||||||
|
background: #F5F4EF;
|
||||||
}
|
}
|
||||||
|
|
||||||
#banner nav ul{
|
#banner nav ul{
|
||||||
|
|
@ -19,10 +23,11 @@ body {
|
||||||
|
|
||||||
#banner nav li{
|
#banner nav li{
|
||||||
float: right;
|
float: right;
|
||||||
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
#banner nav li:first-child a {
|
#banner nav li a {
|
||||||
-moz-border-radius: 0px;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
#banner h1 {
|
#banner h1 {
|
||||||
|
|
|
||||||
BIN
tests/output/custom/theme/images/icons/facebook.png
Normal file
BIN
tests/output/custom/theme/images/icons/facebook.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 300 B |
BIN
tests/output/custom/theme/images/icons/gitorious.png
Normal file
BIN
tests/output/custom/theme/images/icons/gitorious.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.6 KiB |
|
|
@ -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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href="./category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to This is a super article !">This is a super article !</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="this-is-a-super-article.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
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">
|
<abbr class="published" title="2010-12-02T10:14:00">
|
||||||
Thu 02 December 2010
|
Thu 02 December 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
@ -70,7 +75,7 @@
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</footer><!-- /.post-info -->
|
||||||
<p>Some content here !</p>
|
<p>Some content here !</p>
|
||||||
<div class="section" id="this-is-a-simple-title">
|
<div class="section" id="this-is-a-simple-title">
|
||||||
<h2>This is a simple title</h2>
|
<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>
|
<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>
|
<p>→ And now try with some utf8 hell: ééé</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div><!-- /.entry-content -->
|
</div><!-- /.entry-content -->
|
||||||
|
|
||||||
<div class="comments">
|
<div class="comments">
|
||||||
<h2>Comments !</h2>
|
<h2>Comments !</h2>
|
||||||
<div id="disqus_thread"></div>
|
<div id="disqus_thread"></div>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var disqus_identifier = "this-is-a-super-article.html";
|
var disqus_identifier = "this-is-a-super-article.html";
|
||||||
(function() {
|
(function() {
|
||||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||||
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
||||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
|
|
@ -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/cat1.html">cat1</a></li>
|
||||||
|
|
||||||
<li ><a href="./category/bar.html">bar</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>
|
</ul></nav>
|
||||||
</header><!-- /#banner -->
|
</header><!-- /#banner -->
|
||||||
|
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<article>
|
<article>
|
||||||
<header> <h1 class="entry-title"><a href=""
|
<header>
|
||||||
rel="bookmark" title="Permalink to Unbelievable !">Unbelievable !</a></h1> </header>
|
<h1 class="entry-title">
|
||||||
<div class="entry-content">
|
<a href="unbelievable.html" rel="bookmark"
|
||||||
<footer class="post-info">
|
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">
|
<abbr class="published" title="2010-10-15T20:30:00">
|
||||||
Fri 15 October 2010
|
Fri 15 October 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
@ -65,30 +70,30 @@
|
||||||
By <a class="url fn" href="./author/alexis-metaireau.html">Alexis Métaireau</a>
|
By <a class="url fn" href="./author/alexis-metaireau.html">Alexis Métaireau</a>
|
||||||
</address>
|
</address>
|
||||||
|
|
||||||
<p>In <a href="./category/content.html">content</a>. </p>
|
<p>In <a href="./category/misc.html">misc</a>. </p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer><!-- /.post-info -->
|
</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 -->
|
||||||
|
|
||||||
<div class="comments">
|
<div class="comments">
|
||||||
<h2>Comments !</h2>
|
<h2>Comments !</h2>
|
||||||
<div id="disqus_thread"></div>
|
<div id="disqus_thread"></div>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var disqus_identifier = "unbelievable.html";
|
var disqus_identifier = "unbelievable.html";
|
||||||
(function() {
|
(function() {
|
||||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||||
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
dsq.src = 'http://blog-notmyidea.disqus.com/embed.js';
|
||||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="extras" class="body">
|
<section id="extras" class="body">
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
__all__ = [
|
__all__ = [
|
||||||
'temporary_folder',
|
|
||||||
'get_article',
|
'get_article',
|
||||||
'unittest',
|
'unittest',
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue