summaryrefslogtreecommitdiff
path: root/templates/macros.html
blob: 76e7f91dbe527ac342f7efa274832ef0efc48c66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{% macro form(to, domain, reply=False) %}
<form action="mailto:{{ to }}@{{ domain }}" method="GET" class="submit">
  <a name="ReplyForm"></a>
  {% if reply %}
  <h5 class="form" > Reply </h5>
  {% else %}
  <h5 class="form" > Submit a bug </h5>
  <label for="subject">Subject: </label><input name="subject" type="text" /><br>
  {% endif %}
  <label for="body">Description of bug:</label><br><textarea name="body"></textarea><br>
  <input type="submit" value="Open mail program to submit bug report" />
</form>
{% endmacro %}

{% macro h1(DOMAIN) %}
<h1><a href="/">    <img class="logo" src="/hemiptera.png" alt="Hemiptera Logo" > Hemiptera Bugtracker at {{DOMAIN}}</a></h1>
{% endmacro %}
{% macro head() %}
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="/styles.css" >
<link rel="icon" type="image/png" href="/hemiptera.png"/>
{% endmacro %}


{% macro footer() %}
<footer>
  <img class="logo" src="/hemiptera.png" alt="Hemiptera Logo" >Pages generated by Hemiptera.<br> Hemiptera is free software, licensed under AGPL v3. <a href="https://git.bananach.space/hemiptera.git" >Source code</a>

</footer>

{% endmacro %}