forked from isichos/epa
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Each view is accessible from the landing page We could also use tabs (but then the url is not directly accessible to reach a given tab (we can set it up, but now make it change in the browser as we select a tab)
- Loading branch information
1 parent
4bc18c7
commit 5c17e6a
Showing
8 changed files
with
800 additions
and
283 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{% load static %} | ||
|
||
<section class="about"> | ||
<div class="about__wrap"> | ||
<!--div class="about__heading"> | ||
<h2>About us</h2> | ||
</div> | ||
<div class="about__text"> | ||
<p></p> | ||
</div--> | ||
<div class="about__logos"> | ||
<div class="about__partners"> | ||
<div> | ||
<a href="https://www.dgs.de/aktuell/" target="_blank" rel="noopener noreferrer"> | ||
<img src="{% static 'assets/logos/2020-03-09_DGS.png' %}" alt="Deutsche Gesellschaft für Sonnenenergie logo"> | ||
</a> | ||
</div> | ||
<div> | ||
<a href="https://reiner-lemoine-institut.de/en/" target="_blank" rel="noopener noreferrer"> | ||
<img src="{% static 'assets/logos/rlilogo.png' %}" alt="Reiner Lemoine Institut logo"> | ||
</a> | ||
</div> | ||
<div> | ||
<a href="https://www.ifam.fraunhofer.de" target="_blank" rel="noopener noreferrer"> | ||
<img src="{% static 'assets/logos/ifam_logo.png' %}" alt="Fraunhofer IFAM logo"> | ||
</a> | ||
</div> | ||
</div> | ||
<div class="about__support"> | ||
{% if "de" in LANGUAGE_NAME %} | ||
<a href="https://www.bmwi.de/Navigation/DE/Home/home.html" target="_blank" rel="noopener noreferrer"> | ||
<img src="{% static 'assets/logos/BMWK_Fz_2017_WebSVG_de.svg' %}" alt="Federal Ministry for Economic Affairs and Energy logo"> | ||
</a> | ||
{% else %} | ||
<a href="https://www.bmwi.de/Navigation/EN/Home/home.html" target="_blank" rel="noopener noreferrer"> | ||
<img src="{% static 'assets/logos/BMWK_Fz_2017_WebSVG_en.svg' %}" alt="Federal Ministry for Economic Affairs and Energy logo"> | ||
</a> | ||
{% endif %} | ||
</div> | ||
</div> | ||
</div> | ||
</section> |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{% extends 'base.html' %} | ||
{% load static %} | ||
{% load i18n %} | ||
|
||
|
||
{% block title %} {% translate "Commune" %} {% endblock title %} | ||
|
||
|
||
{% block head_block %} | ||
<link rel="stylesheet" href="{% static 'css/landing.css' %}"> | ||
{% endblock head_block %} | ||
|
||
{% block index %} | ||
{% if not user.is_authenticated %} | ||
{% get_current_language as LANGUAGE_NAME %} | ||
<main class="landing-page"> | ||
|
||
<section class="header"> | ||
<div class="header__wrap" style="flex-direction:column;"> | ||
<div class="header__heading"> | ||
<h1>{% translate "Something about KEP" %}</h1> | ||
<p>{% translate "tbd" %}</p> | ||
</div> | ||
<div class="header__btn"> | ||
<a href="#tool-anchor" class="btn btn--full">Learn more</a> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
|
||
{% include 'landing/newsletter.html' %} | ||
{% include 'landing/about.html' %} | ||
|
||
|
||
</main> | ||
|
||
|
||
|
||
{% endif %} | ||
{% endblock index %} |
Oops, something went wrong.