2
0
mirror of https://github.com/offen/website.git synced 2024-11-22 09:00:28 +01:00

moved theme folder in repo

This commit is contained in:
Hendrik Niefeld 2019-05-30 22:17:39 +02:00
parent 9c970fea32
commit d311dd2a8b
2 changed files with 53 additions and 0 deletions

36
theme/templates/base.html Normal file
View File

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>{% block title %}{% endblock %}</title>
<link rel="stylesheet" type="text/css" href="{{ SITEURL }}/css/style.css">
</head>
<body>
<div class="wrapper">
<header>
<a href="/" title="offen home page" alt="offen home page"><img src="{{ SITEURL }}/img/logo.svg" alt="offen logo" width="165" height="102" class="logo"></a>
</header>
{% block content %}{% endblock %}
<footer>
<ul class="footer-list">
<li>
May 2019
</li>
<li>
<a href="https://github.com/offen" title="Offen GitHub" target="_blank">GitHub</a>
</li>
<li>
<a href="mailto:mail@offen.dev" title="Offen Contact" target="_blank">Contact</a>
</li>
</ul>
</footer>
</div>
</body>
</html>

17
theme/templates/page.html Normal file
View File

@ -0,0 +1,17 @@
{% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock %}
{% block content %}
<section>
<h2>
<strong>offen</strong> is a free analysis software for websites and web applications that allows a fair handling of data.
</h2>
{% block before_content %}{% endblock %}
{% block page_content %}{{ page.content }}{% endblock %}
{% block after_content %}{% endblock %}
</section>
{% endblock %}