-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (69 loc) · 2.51 KB
/
index.html
File metadata and controls
75 lines (69 loc) · 2.51 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{% extends "saas/legal/base.html" %}
{% block content %}
<div class="light-background">
<!-- Terms and Policies Section -->
<div class="container">
<h1>{% trans %}Terms and Policies{% endtrans %}</h1>
<div class="px-4 py-4 bg-body text-body">
<section id="legal">
<p>
{% trans %}In providing the best possible service, you will find here the legal documents that keeps everyone from trouble.{% endtrans %}
</p>
{% if agreement_list %}
<ul>
{% for agreement in agreements %}
<li>
<a id="{{agreement.slug}}" target="_blank" href="{{agreement.location}}">{{agreement.title}}</a> ‐ updated <span class="editable edit-date">{{agreement.updated_at|humanize_short_date}}</span>
</li>
{% endfor %}
</ul>
{% else %}
<em>{% trans %}No Terms nor policies yet{% endtrans %}</em>
{% endif %}
</section>
<!-- Contact Us Section -->
<section id="contacts" class="pb-4">
<h2 class="pt-3">Contact Us</h2>
<p>
{% trans %}You can also feel free to contact us by alternative means.{% endtrans %}
</p>
<div class="row vcard pb-4">
<!-- Show Email -->
{% if organization.email %}
<div class="col-md-4">
<h6>{% trans %}Email{% endtrans %}</h6>
<p>
<span class="email">{{organization.email}}</span>
</p>
</div>
{% endif %}
<!-- Show Phone Number -->
{% if organization.phone %}
<div class="col-md-4">
<h6>{% trans %}Phone{% endtrans %}</h6>
<p>
<span class="tel">{{organization.phone}}</span>
</p>
</div>
{% endif %}
<!-- Show Address -->
{% if organization.street_address %}
<div class="col-md-4">
<h6>{% trans %}Address{% endtrans %}</h6>
<p>
<span class="adr">
<span class="street-address">{{organization.street_address}}</span><br />
<span class="locality">{{organization.locality}}</span>,
<abbr class="region" title="California">{{organization.region}}</abbr>
<span class="postal-code">{{organization.postal_code}}</span><br />
<span class="country-name">{{organization.country.name}}</span>
</span>
</p>
</div>
{% endif %}
</div>
</section>
</div>
</div>
</div>
{% endblock %}