-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtraining.html
More file actions
64 lines (57 loc) · 2.02 KB
/
Copy pathtraining.html
File metadata and controls
64 lines (57 loc) · 2.02 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
---
layout: default
title: "Continuous Training"
excerpt: "continuousphp is not only a great platform, it is also a team of experts who strongly believe that you need someone at your side to put Continuous Delivery and Continuous Deployment in place in your daily work. To do so, we have created training courses which will help you to understand all the knowledge required to master CD."
permalink: /training/
---
<section class="site-content resource-list clearfix">
<div class="row">
<div class="columns small-12">
<h1>Training</h1>
</div>
</div>
<div class="row intro clearfix">
<div class="small-12 columns">
<p>
{{ page.excerpt }}
</p>
</div>
</div>
{% for training in site.trainings | sort: 'date' %}
<div class="row resource-item clearfix">
<div class="columns medium-5 small-12">
<h2>
{% if training.link %}
<a target="_blank" href="{{ training.link }}">
{{ training.title }}
</a>
{% else %}
<a href="{{ training.url }}">
{{ training.title }}
</a>
{% endif %}
</h2>
<div class="signature clearfix">
<img gravatar-src="'{{ site.data.members[training.author].email }}'"
title="{{ site.data.members[training.author].name }}"
class="label round gravatar"
gravatar-size="47" />
<span class="time">Posted about <span am-time-ago="'{{ training.date | date_to_xmlschema }}'"></span></span><br />
<span class="writer">Written by <a href="/about-us#{{ training.author }}">{{ site.data.members[training.author].name }}</a></span>
</div>
</div>
<div class="columns medium-7 small-12 synopsis">
{{ training.content }}
{% if training.link %}
<a class="button success" target="_blank" href="{{ training.link }}">
Read more
</a>
{% else %}
<a class="button success" href="{{ training.url }}">
Read more
</a>
{% endif %}
</div>
</div>
{% endfor %}
</section>