1
0
Fork 0
forked from github/pelican

Images support and add built files to gitignore

This commit is contained in:
Arnaud BOS 2010-12-30 14:11:37 +00:00 committed by Alexis Metaireau
commit 3ee595f927
11 changed files with 136 additions and 11 deletions

View file

@ -11,3 +11,8 @@ Why not ?
After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst !
YEAH !
.. image:: pictures/Sushi.jpg
:height: 450 px
:width: 600 px
:alt: alternate text

View file

@ -0,0 +1,12 @@
This is a test page
###################
:category: test
Just an image.
.. image:: pictures/Fat_Cat.jpg
:height: 450 px
:width: 600 px
:alt: alternate text

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

View file

@ -11,7 +11,17 @@ Some content here !
This is a simple title
======================
And here comes the cool stuff.
And here comes the cool stuff_.
.. image:: pictures/Sushi.jpg
:height: 450 px
:width: 600 px
:alt: alternate text
.. image:: pictures/Sushi_Macro.jpg
:height: 450 px
:width: 600 px
:alt: alternate text
.. code-block:: python
@ -20,3 +30,4 @@ And here comes the cool stuff.
→ And now try with some utf8 hell: ééé
.. _stuff: http://books.couchdb.org/relax/design-documents/views

View file

@ -17,3 +17,5 @@ LINKS = (('Biologeek', 'http://biologeek.org'),
SOCIAL = (('twitter', 'http://twitter.com/ametaireau'),
('lastfm', 'http://lastfm.com/user/akounet'),
('github', 'http://github.com/ametaireau'),)
STATIC_PATHS = ["pictures",]