-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minor fixes. Add .gitignore to repo.
- Loading branch information
1 parent
7518ba9
commit 530fecd
Showing
4 changed files
with
30 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
*~ | ||
._* | ||
*.lock | ||
*.DS_Store | ||
*.swp | ||
*.out | ||
*.py[cod] | ||
output |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
The pelican's blog | ||
################## | ||
The Pelican Blog | ||
################ | ||
|
||
This is the pelican's project weblog. You can add content to it by forking it | ||
or pushing direcly on the pelican server. | ||
This is the Pelican project's weblog. You can add content to it by forking it | ||
or pushing directly to the Pelican blog's server. | ||
|
||
The makefile has a rule to do that for you, when you're ready to publish, and | ||
if you have the rights, you just have to type:: | ||
The Makefile has a rule to do that for you if you have access to the blog's | ||
server. When you're ready to publish, you just have to type:: | ||
|
||
make upload | ||
|
||
and it will generate the content locally and upload it on the server :) | ||
... which will generate the content locally and upload it on the server. :) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- # | ||
|
||
AUTHOR = u"Pelican contributors" | ||
SITENAME = u"Pelican's development blog" | ||
AUTHOR = u"Pelican Contributors" | ||
SITENAME = u"Pelican Development Blog" | ||
SITEURL = '' | ||
|
||
TIMEZONE = 'Europe/Paris' | ||
|
||
DEFAULT_LANG = 'en' | ||
LOCALE = 'en_US.utf8' | ||
LOCALE = 'en_US.UTF-8' | ||
|
||
MENUITEMS = (('documentation', 'http://docs.getpelican.com'), ) | ||
|
||
# Blogroll | ||
LINKS = (('Pelican', 'http://docs.getpelican.com'), | ||
('Python.org', 'http://python.org'), | ||
('Jinja2', 'http://jinja.pocoo.org')) | ||
('Python.org', 'http://python.org'), | ||
('Jinja2', 'http://jinja.pocoo.org')) | ||
|
||
DEFAULT_PAGINATION = 5 |