www.studyforrest.org/theme/templates/base.html
Michael Hanke 373447eb25
All checks were successful
Deploy on webserver / Build site with pelican and deploy on success (push) Successful in 45s
Adjust source pointer.
2025-02-28 15:18:37 +01:00

73 lines
2.9 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="{{ DEFAULT_LANG }}" itemscope itemtype="http://schema.org/WebPage">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% block meta %}
<meta name="author" content="{{ AUTHOR }}">
{% endblock %}
<title>{{ SITENAME }}{% block title %}{% endblock %}</title>
<link rel="license" hreflang="en" href="/copyright.html">
<!-- favicons were once a simple race, but they dug too greedily and too deep... -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png?v=5">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png?v=5">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png?v=5">
<link rel="manifest" href="/site.webmanifest?v=5">
<link rel="mask-icon" href="/safari-pinned-tab.svg?v=5" color="#5bbad5">
<link rel="shortcut icon" href="/favicon.ico?v=5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" type="text/css" href="/theme/css/style.css">
{% block extra_headers %}{% endblock %}
</head>
<body>
<nav>
<div>
<div>
<h1><a href='/'><span class="icon-studyforrest"></span>StudyForrest</a></h1>
<ul>
{% for title, link in MENUITEMS %}
{% if page and page.url == link %}{% set link_class = "class='active'" %}{% endif %}
<li><a href="{{ link }}" {{ link_class }}>{{ title }}</a></li>
{% endfor %}
</ul>
</div>
<form action="{{ SITEURL }}/search.html" role="search">
<input id="tipue_search_input" aria-label="Search" type="search" placeholder="Search" name="q"><button type="submit" aria-label='Search'><span class="icon-search"></span></button>
</form>
</div>
</nav>
{% block topcontent %}{% endblock %}
<main>
<div id='content'>
{% block content %}{% endblock %}
</div><!-- /.content -->
</main>
<footer>
<div>
<div class='left'>
<p>Website sources are available <a href="https://hub.psychoinformatics.de/www/www.studyforrest.org">on the PsyinfHub</a>.</p>
<p>Content <a rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA</a>
unless <a rel="license" href='/copyright.html'>indicated otherwise</a>.</p>
<p>&copy; 20142024 {{ AUTHOR }}</p>
</div>
<span class="icon-studyforrest center"></span>
<div class='right'>
<p><strong>Contact Us:</strong></p>
<p><a href="mailto:info@studyforrest.org">info@studyforrest.org</a></p>
<ul class='social-links'>
<li><a class="icon-github" href='https://github.com/psychoinformatics-de?q=studyforrest' aria-label='StudyForrest @ GitHub'></a></li>
<li><a class="icon-twitter" href='https://twitter.com/studyforrest' aria-label='StudyForrest @ Twitter'></a></li>
</ul>
</div>
</div>
</footer>
</body>
</html>