From 41faf01ff6a36bb58477a9da41787efb9d27cabd Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Thu, 22 Mar 2007 18:40:59 +0100 Subject: [PATCH] [svn] last jinja webpage update --HG-- branch : trunk --- docs/src/index.txt | 2 ++ docs/src/installation.txt | 2 +- www/contribute.tmpl | 33 +++++++++++++++++++++++++++++++++ www/layout/base.tmpl | 5 +++-- www/static/style.css | 19 +++++++++++++++---- 5 files changed, 54 insertions(+), 7 deletions(-) create mode 100644 www/contribute.tmpl diff --git a/docs/src/index.txt b/docs/src/index.txt index 0940fb7..f56f0e7 100644 --- a/docs/src/index.txt +++ b/docs/src/index.txt @@ -35,3 +35,5 @@ Welcome in the Jinja documentation. - `Differences To Django `_ - `Recipies `_ + +There is also support via IRC on the ``#pocoo`` channel on `irc.freenode.net`. diff --git a/docs/src/installation.txt b/docs/src/installation.txt index d185467..eecb4a4 100644 --- a/docs/src/installation.txt +++ b/docs/src/installation.txt @@ -58,7 +58,7 @@ in your Python installation's site-packages directory. Every time the command is run, the sources are updated from Subversion. -.. _download page: http://jinja.pocoo.org/download/ +.. _download page: http://jinja.pocoo.org/download.html .. _setuptools: http://peak.telecommunity.com/DevCenter/setuptools .. _easy_install: http://peak.telecommunity.com/DevCenter/EasyInstall .. _Subversion: http://subversion.tigris.org/ diff --git a/www/contribute.tmpl b/www/contribute.tmpl new file mode 100644 index 0000000..dc20a1d --- /dev/null +++ b/www/contribute.tmpl @@ -0,0 +1,33 @@ +<% extends 'layout/base.tmpl' %> +<% set title = 'Contribute' %> +<% set active_page = 'contribute' %> +<% block content %> +

Contribute

+

+ Because Jinja is an open source project we're always open towards + suggestions and patches. If you want to participate in the Jinja + development python knowlege is required of corse since the project is + implemented completely in python. +

+

+ Development takes place on trac.pocoo.org, + where the Subversion repository, tickets and development Wiki pages + can be viewed. +

+

Ways to contact the authors

+

+ Our primary communication instrument is the IRC channel #pocoo + on the Freenode network. To join it, let your IRC client connect to + irc.freenode.net and do /join #pocoo. +

+

+ If you found a bug, just open a ticket in the trac tracker. Be sure to + add your e-mail address under "CC" to be notified when the issue is fixed. +

+

The Authors

+

+ Jinja is maintained by Armin Ronacher (nickname + mitsuhiko), e-mail address armin.ronacher (guess what) + active-4.com. +

+<% endblock %> diff --git a/www/layout/base.tmpl b/www/layout/base.tmpl index bd1e9c8..b311602 100644 --- a/www/layout/base.tmpl +++ b/www/layout/base.tmpl @@ -2,7 +2,8 @@ ('index.html', 'index', 'Index'), ('faq.html', 'faq', 'FAQ'), ('documentation/index.html', 'documentation', 'Documentation'), - ('download.html', 'download', 'Download') + ('download.html', 'download', 'Download'), + ('contribute.html', 'contribute', 'Contribute') ] %> @@ -30,7 +31,7 @@ diff --git a/www/static/style.css b/www/static/style.css index 0fa944e..a1e174d 100644 --- a/www/static/style.css +++ b/www/static/style.css @@ -3,7 +3,7 @@ */ body { - background-color: #333; + background-color: #222; margin: 0; padding: 0; font-family: 'Georgia', serif; @@ -125,9 +125,13 @@ div.admonition p { padding: 10px 20px 10px 20px; } +#footer a { + color: #fff; +} + #contentwrapper { max-width: 700px; - padding: 0 10px 0 20px; + padding: 0 10px 20px 20px; } #header { @@ -195,14 +199,21 @@ div.admonition p { #contentwrapper h1, #contentwrapper h2, -#contentwrapper h3 { +#contentwrapper h3, +#contentwrapper h4 { font-family: 'Trebuchet MS', 'Arial', sans-serif; } +#contentwrapper h2 a, +#contentwrapper h3 a, +#contentwrapper h4 a { + color: #333; +} + #contentwrapper h1 { color: #b41717; font-size: 28px; - margin: 20px 0 0 -5px; + margin: 20px 0 0 -8px; } #contentwrapper h2 { -- 2.26.2