summaryrefslogtreecommitdiff
path: root/modules/installed/help
diff options
context:
space:
mode:
authorSean O'Brien <diggity@diggmobile.(none)>2012-02-27 17:18:41 -0500
committerJames Vasile <james@jamesvasile.com>2012-03-12 14:39:31 -0400
commit638b287d1bf9e2772716cc6391a18d65ade3e18b (patch)
treec8f3f8d9f85cd7fec4232e6b3f25c825220478d0 /modules/installed/help
parentd2bcebf6766ef2dec4827006198296161d1b49be (diff)
new template based upon bootstrap
Diffstat (limited to 'modules/installed/help')
-rw-r--r--modules/installed/help/help.py18
1 files changed, 10 insertions, 8 deletions
diff --git a/modules/installed/help/help.py b/modules/installed/help/help.py
index e0a1870..f10b04d 100644
--- a/modules/installed/help/help.py
+++ b/modules/installed/help/help.py
@@ -8,7 +8,7 @@ class Help(PagePlugin):
def __init__(self, *args, **kwargs):
PagePlugin.__init__(self, *args, **kwargs)
self.register_page("help")
- self.menu = cfg.main_menu.add_item(_("Documentation and FAQ"), "/help", 101)
+ self.menu = cfg.main_menu.add_item(_("Documentation"), "/help", 101)
self.menu.add_item(_("Where to Get Help"), "/help/index", 5)
self.menu.add_item(_("Developer's Manual"), "/help/view/plinth", 10)
self.menu.add_item(_("FAQ"), "/help/view/faq", 20)
@@ -27,7 +27,7 @@ class Help(PagePlugin):
offer suggestions, edits, and screenshots for completing
it!</p>
- <p><a href="http://wiki.debian.org/FreedomBox">A section of
+ <p><a href="http://wiki.debian.org/FreedomBox" target="_blank">A section of
the Debian wiki</a> is devoted to the %(box)s. At some
point the documentation in the wiki and the documentation in
the manual should dovetail.</p>
@@ -48,8 +48,9 @@ class Help(PagePlugin):
@cherrypy.expose
def about(self):
return self.fill_template(title=_("About the %s" % cfg.box_name), main="""
- <p> We live in a world where our use of the network is
- mediated by organizations that often do not have our best
+ <img src="/static/theme/img/freedombox-logo-200px.png" style="float:right;padding:25px;" />
+ <p>We live in a world where our use of the network is
+ mediated by those who often do not have our best
interests at heart. By building software that does not rely on
a central service, we can regain control and privacy. By
keeping our data in our homes, we gain useful legal
@@ -62,14 +63,15 @@ class Help(PagePlugin):
runs on must be cheap. The software it runs on must be easy to
install and administrate by anybody. It must be easy to
transition from existing services.</p>
-
- <p>There are a number of projects working to realize a future
+ <p><a class="btn btn-primary btn-large" href="http://wiki.debian.org/FreedomBox" target="_blank">Learn more &raquo;</a></p>""",
+ sidebar_right=_("""<strong>Our Goal</strong><p>There are a number of projects working to realize a future
of distributed services; we aim to bring them all together in
a convenient package.</p>
- <p>For more information about the Freedom Box project, see the
+ <p>For more information about the FreedomBox project, see the
<a href="http://wiki.debian.org/FreedomBox">Debian
- Wiki</a>.</p>""")
+ Wiki</a>.</p>
+ """))
class View(PagePlugin):
def __init__(self, *args, **kwargs):