-
Notifications
You must be signed in to change notification settings - Fork 0
/
videos-part-2.html
58 lines (54 loc) · 3.26 KB
/
videos-part-2.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
57
58
---
layout: default
title: Getting Started Videos – Debrief Maritime Analysis Tool
---
{% include header-page.html title="Debrief Instructional Videos" image="../assets/images/header_bg_getdebrief.png" %}
<main>
<section class="section-default">
<div class="container-fluid">
<h1>Debrief Instructional Videos: Part 2</h1>
<p class="text-center font-weight-light">
This page contains video play-throughs of the
<a href="http://debrief.info/support/">Debrief tutorials</a>.
The following videos correspond to the
<a href="http://debrief.info/library/DebriefNG_TMA_Tutorial.pdf">TMA Skills document</a>.
If you’ve haven’t progressed to this tutorial, you can find the
<a href="http://debrief.info/videos/">Getting Started videos </a>
page for the relevant videos. There are currently 5 tutorials, broken down into 22 videos, with more videos to come soon. These videos use test data to demonstrate how to use various Debrief functions and features. The data is included with all copies of Debrief so you can easily follow along.
</p>
<div class="divider-default"></div>
</div>
</section>
{% for item in site.data.videos.part2 %}
<section class="section-default section-default--videos">
<div class="container-fluid">
<h1>{{ item.title }}</h1>
<p class="text-center font-weight-light pb-3">{{ item.title_text }}</p>
<div {% if item.divider == true %}class="divider-default"{% endif %}></div>
<div class="row">
<div {% if item.img_first == true %}class="col-md-6 order-md-1 mb-3"{% else %}class="col-md-6 order-md-2 mb-3"{% endif %}>
<div class="embed-responsive embed-responsive-16by9 mx-auto">
<iframe class="embed-responsive-item img-get-dedrief" src="{{ item.video }}" width="560" height="315" allowfullscreen></iframe>
</div>
</div>
<div {% if item.img_first == false %}class="col-md-6 order-md-1"{% else %}class="col-md-6 order-md-2"{% endif %}>
<h3 class="font-weight-light">{{ item.subtitle }}</h3>
{% for entry in item.text %}
<p class="font-weight-light {{ entry.margin }}">{{ entry.paragraph }}</p>
{% endfor %}
{% if item.btn == true %}
<a target="_blank" href="{{ item.link }}" class="btn btn-lg btn-default btn-secondary btn-dark-hover {{ 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>
<div {% if item.divider-bottom == true %}class="divider-default"{% endif %}></div>
</div>
</section>
{% endfor %}
</main>