From 2b0d3052628b50f6065ab026b975fc851b40c50d Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 9 May 2013 12:28:23 +0200 Subject: [PATCH] wishlist: Add jumbotron. --- templates/wishlist/base.html | 12 ++++++++++++ templates/wishlist/closed.html | 2 +- templates/wishlist/donate.html | 2 +- templates/wishlist/index.html | 6 +----- templates/wishlist/terms.html | 2 +- templates/wishlist/wish.html | 2 +- 6 files changed, 17 insertions(+), 9 deletions(-) create mode 100644 templates/wishlist/base.html diff --git a/templates/wishlist/base.html b/templates/wishlist/base.html new file mode 100644 index 00000000..6729591e --- /dev/null +++ b/templates/wishlist/base.html @@ -0,0 +1,12 @@ +{% extends "../base-1.html" %} + +{% block header %} +
+
+

{{ _("IPFire Wishlist") }}

+

+ {{ _("Crowd funding for the IPFire project") }} +

+
+
+{% end header %} diff --git a/templates/wishlist/closed.html b/templates/wishlist/closed.html index 5eaaac1f..3247195f 100644 --- a/templates/wishlist/closed.html +++ b/templates/wishlist/closed.html @@ -1,4 +1,4 @@ -{% extends "../base-1.html" %} +{% extends "base.html" %} {% block title %}{{ _("Closed wishes") }}{% end block %} diff --git a/templates/wishlist/donate.html b/templates/wishlist/donate.html index 71685627..5d659706 100644 --- a/templates/wishlist/donate.html +++ b/templates/wishlist/donate.html @@ -1,4 +1,4 @@ -{% extends "../base-1.html" %} +{% extends "base.html" %} {% block title %}{{ wish.title }} - {{ _("Donate") }}{% end block %} diff --git a/templates/wishlist/index.html b/templates/wishlist/index.html index 360237dc..127984ea 100644 --- a/templates/wishlist/index.html +++ b/templates/wishlist/index.html @@ -1,12 +1,8 @@ -{% extends "../base-1.html" %} +{% extends "base.html" %} {% block title %}{{ _("Home") }}{% end block %} {% block body %} - - {% if lang == "de" %}

Dies ist die IPFire Crowdfunding-Platform, auf welcher du mittels diff --git a/templates/wishlist/terms.html b/templates/wishlist/terms.html index c7dd36c4..b4128bf3 100644 --- a/templates/wishlist/terms.html +++ b/templates/wishlist/terms.html @@ -1,4 +1,4 @@ -{% extends "../base-1.html" %} +{% extends "base.html" %} {% block title %}{{ _("Terms & Conditions") }}{% end block %} diff --git a/templates/wishlist/wish.html b/templates/wishlist/wish.html index f075963a..50607343 100644 --- a/templates/wishlist/wish.html +++ b/templates/wishlist/wish.html @@ -1,4 +1,4 @@ -{% extends "../base-1.html" %} +{% extends "base.html" %} {% block title %}{{ wish.title }} - {{ _("Wish") }}{% end block %} -- 2.39.2