diff options
| author | Jojo144 <Jojo144@users.noreply.github.com> | 2020-05-07 22:34:31 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-07 22:34:31 +0200 |
| commit | bd1122cc0e3c5524bea6f4dc97422eaeb52ed8d2 (patch) | |
| tree | ccd40440e4602896103b5f678f5727a2860d08ab /ihatemoney/templates/home.html | |
| parent | 795efd6b58a0d4eec002eddeb4c9b0b16461a4a0 (diff) | |
| download | ihatemoney-mirror-bd1122cc0e3c5524bea6f4dc97422eaeb52ed8d2.zip ihatemoney-mirror-bd1122cc0e3c5524bea6f4dc97422eaeb52ed8d2.tar.gz ihatemoney-mirror-bd1122cc0e3c5524bea6f4dc97422eaeb52ed8d2.tar.bz2 | |
Integrate illustrations as a showcase (#544)
Integrate some custom graphics, and a whole comics explanation, only in French for now.
Fix #363
Diffstat (limited to 'ihatemoney/templates/home.html')
| -rw-r--r-- | ihatemoney/templates/home.html | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/ihatemoney/templates/home.html b/ihatemoney/templates/home.html index bac8abe..4af6a80 100644 --- a/ihatemoney/templates/home.html +++ b/ihatemoney/templates/home.html @@ -9,14 +9,23 @@ {{ _("Try out the demo") }} </a> {% endif %} + {% if g.lang == 'fr' %} + ou <a class="showcase btn" onclick="javascript:showGallery(); return false;">Voir la BD explicative</a> + <img class="showcaseimg" src="{{ url_for("static", filename='images/indicate.svg') }}" /> + {% endif %} </div> <div class="col-xs-12 col-sm-4"> - <p class="additional-content"> - {{ _("You're sharing a house?") }}<br /> - {{ _("Going on holidays with friends?") }}<br /> - {{ _("Simply sharing money with others?") }} <br /> - <strong>{{ _("We can help!") }}</strong> - </p> + <table class="additional-content"><tr> + <td> + {{ _("You're sharing a house?") }}<br /> + {{ _("Going on holidays with friends?") }}<br /> + {{ _("Simply sharing money with others?") }} <br /> + <strong>{{ _("We can help!") }}</strong> + </td> + <td> + <img class="shareimg" src="{{ url_for("static", filename='images/share.svg') }}" /> + </td> + </tr></table> </div> </header> <main class="row home"> |
