Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
eoa2-xmldb/src/website/templates/base.html
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
79 lines (79 sloc)
3.46 KB
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
{% 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> |