-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EsGeh
authored and
EsGeh
committed
Jan 26, 2020
1 parent
cfa4849
commit d9f8401
Showing
9 changed files
with
193 additions
and
32 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
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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
Django==2.1.5 | ||
pytz==2018.9 | ||
psycopg2-binary | ||
psycopg2-binary==2.7.7 | ||
lxml == 4.4.2 | ||
django-cms == 3.7.1 | ||
django-treebeard == 4.3 | ||
django-sekizai == 1.1.0 | ||
|
||
# the xml database | ||
pyexistdb |
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
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
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,79 @@ | ||
{% load cms_tags menu_tags sekizai_tags staticfiles %} | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"/> | ||
<title>{% block title %}Edition Open Access{% endblock title %}</title> | ||
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"/> | ||
{% block metatags %}{% endblock metatags %} | ||
{% block hyperimage %}{% endblock hyperimage %} | ||
<link rel="shortcut icon" href="{% static 'favicon.png' %}"/> | ||
<link rel="apple-touch-icon" href="{% static 'assets/images/favicon-apple.png' %}"/> | ||
<link href="{% static 'app.css' %}" rel="stylesheet"/> | ||
{% render_block "css" %} | ||
</head> | ||
<body> | ||
{% cms_toolbar %} | ||
<div class="page"> | ||
<div class="content"> | ||
<div class="mobile-header__background"></div> | ||
<header class="header"> | ||
<div class="header__content"> | ||
<div class="blocklogo container"> | ||
<div class="blocklogo__logo"> | ||
<a href="{% page_url 'intropage' %}"> | ||
<img class="blocklogo__img" src="{% static 'assets/images/logo.png' %}" alt="logo" data-object-fit="cover"/> | ||
</a> | ||
</div> | ||
</div> | ||
<nav class="nav"> | ||
<a class="nav-toggle" href="#"> | ||
<span class="nav-toggle__item"></span> | ||
<span class="nav-toggle__item"></span> | ||
<span class="nav-toggle__item"></span> | ||
</a> | ||
<div class="nav__wrapper"> | ||
<div class="container"> | ||
<ul class="nav__menu"> | ||
<!-- <li class="nav__item"> --> | ||
{% show_menu 0 100 100 100 %} | ||
<li class="nav__item nav-search" id="nav-search"> | ||
<form class="nav-search-form"> | ||
<input class="nav-search__input" placeholder="Search" type="search" value="" name="search" id="search"/> | ||
<input class="nav-search__submit" type="submit" value=""/> | ||
</form> | ||
</li> | ||
<li class="nav__item nav-footer"> | ||
<a class="nav__link nav-footer__link" href="{% page_url 'contact' %}">Contact</a><a class="nav__link nav-footer__link" href="{% page_url 'imprint' %}">Imprint</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
<nav class="breadcrumbs container"> | ||
<ul class="breadcrumbs__items"> | ||
{% block breadcrumb %} | ||
{% show_breadcrumb %} | ||
{% endblock %} | ||
</ul> | ||
</nav> | ||
</div> | ||
</header> | ||
<!-- <main class="main"> <div class="container"> <div class="main-content"> --> | ||
{% block content %}{% endblock content %} | ||
<!-- </div> </div> </main> --> | ||
</div> | ||
<footer class="footer"> | ||
<div class="footer__content"> | ||
<div class="footer-menu"><a href="{% page_url 'contact' %}">Contact</a><a href="{% page_url 'imprint' %}">Imprint</a><a class="share" href="#">Share<span>this Page</span></a></div> | ||
<div class="footer-logo"><a href="{{ organisation.homepage }}"> | ||
<h2>{{ organisation.name }}</h2></a></div> | ||
</div> | ||
</footer> | ||
</div> | ||
{% block hyperimagebottom %}{% endblock hyperimagebottom %} | ||
<script type="text/javascript" src="{% static 'app.js' %}"></script> | ||
{% render_block "js" %} | ||
</body> | ||
</html> |
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