-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget-debrief.html
56 lines (53 loc) · 3.09 KB
/
get-debrief.html
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
---
layout: default
title: Get Debrief – Debrief Maritime Analysis Tool
---
{% include header-page.html title="GET DEBRIEF" image="../assets/images/header_bg_getdebrief.png" %}
<main>
<section class="section-default">
<div class="container-fluid">
<h1>DEBRIEF ON CD</h1>
<p class="text-center font-weight-light">Get your own copy of Debrief on CD</p>
<div class="divider-default"></div>
<div class="row">
<div class="col-sm-4 text-center">
<img src="../assets/images/sml_mock_01-295x2201.png" alt="" class="img-thumbnail thumbnail-user-logo">
</div>
<div class="col-sm-8">
<p class="font-weight-light">If you don’t mind providing some background to your use of Debrief, we’ll be happy to send you a copy of Debrief on CD.</p>
<p class="font-weight-light">Debrief will run from this CD without requiring installation on your PC.</p>
<p class="font-weight-light">Just send a message to <span class="text-secondary">contact<span style="display:none">foo</span>@debrief.info</span>.</p>
<p class="font-weight-light">Be sure to include an international mailing address, and what you're considering using Debrief for.</p>
<a target="_self" class="btn btn-default btn-primary btn-mail mt-4 d-block d-sm-inline-block mx-auto" href="mailto:contact@debrief.info">Send a message now!</a>
</div>
</div>
</div>
</section>
{% for item in site.data.get-debrief.section %}
<section class="section-default section-default--get-dedrief">
<div class="container-fluid">
<h1>{{ item.title }}</h1>
<div {% if item.divider == true %}class="divider-default"{% endif %}></div>
<div class="row">
<div {% if item.img_first == false %}class="col-md-6 order-1"{% else %}class="col-md-6 order-2"{% endif %}>
{% for entry in item.text %}
<p class="font-weight-light">{{ entry.paragraph }}</p>
{% endfor %}
{% if item.btn == true %}
<a target="_blank" href="{{ item.link }}" class="btn btn-default btn-danger {{ item.btn_margin }}">
<i class="{{ item.icon }}"></i>
{{ item.btn_name}}
</a>
{% endif %}
{% for entry in item.text %}
<p class="font-weight-light">{{ entry.paragraph-under }}</p>
{% endfor %}
</div>
<div {% if item.img_first == true %}class="col-md-6 order-1 text-center"{% else %}class="col-md-6 order-2 text-center"{% endif %}>
<img src="{{ item.image }}" alt="" class="img-thumbnail img-fluid img-get-dedrief">
</div>
</div>
</div>
</section>
{% endfor %}
</main>