summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2010-04-06 21:10:20 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2010-04-06 21:10:20 +0200
commit57a848b2e1510ba7108b986d5a7a696959c5e732 (patch)
tree243be24184f2f68c6417d73eb496fd2ee2c64de8 /templates
parentc0b4496bd01ce544cc3be57728195fb5574ac95f (diff)
downloadweb-57a848b2e1510ba7108b986d5a7a696959c5e732.tar.gz
web-57a848b2e1510ba7108b986d5a7a696959c5e732.tar.bz2
web-57a848b2e1510ba7108b986d5a7a696959c5e732.zip
Cleaned out the CSS ... removed a bunch of unneeded div's
Diffstat (limited to 'templates')
-rw-r--r--templates/page.mako4
-rw-r--r--templates/pages/index.mako11
-rw-r--r--templates/root.mako6
3 files changed, 13 insertions, 8 deletions
diff --git a/templates/page.mako b/templates/page.mako
index 742602a..e8e582a 100644
--- a/templates/page.mako
+++ b/templates/page.mako
@@ -5,6 +5,4 @@
<%inherit file="/root.mako" />
<h1 class="title">${self.attr.title}</h1>
-<div class="entry">
- ${next.body()}
-</div>
+${next.body()}
diff --git a/templates/pages/index.mako b/templates/pages/index.mako
index 6dec44b..a5cb8d1 100644
--- a/templates/pages/index.mako
+++ b/templates/pages/index.mako
@@ -4,5 +4,14 @@
<%inherit file="/page.mako" />
<p>
-Hier haben wir als irgendwas über Portato.
+Portato is a GUI for the package manager of <a href="http://www.gentoo.org">Gentoo</a> and <a href="http://www.sabayonlinux.org">Sabayon</a> - Portage. It is mostly written in <a href="http://www.python.org">Python</a> for the GTK+-frontend, which is used in most Linux desktop environments (except KDE).
+</p>
+
+<p>
+As the current portage development is quite fast-paced, Portato is not able to keep step. Thus it might be that the released version(s) do not behave as expected. In these cases also try the <a href="development">development version</a>.
+</p>
+
+<h2>Installation</h2>
+<p>
+Portato is delivered with the standard portage tree and can be installed using <code>emerge portato</code>
</p>
diff --git a/templates/root.mako b/templates/root.mako
index 14634c1..c7c7497 100644
--- a/templates/root.mako
+++ b/templates/root.mako
@@ -23,10 +23,8 @@
</div>
<div id="page">
- <div id="content">
- <div class="post">
- ${next.body()}
- </div>
+ <div class="content">
+ ${next.body()}
</div>
<div style="clear: both;"> </div>
</div>