-
Notifications
You must be signed in to change notification settings - Fork 27
/
community.html
104 lines (91 loc) · 3.31 KB
/
community.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
---
layout: default
title: Community
menu_entry: Community
---
<div class="container-fluid">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<h1>Development</h1>
<p>
The radanalytics.io community has several ongoing projects with frequent
releases. These are all collected in our GitHub organization. Each project
addresses a specific concern within the OpenShift realm and provide solid
solutions for your own data driven applications.
</p>
<h4>
<a href="https://github.com/radanalyticsio" target="blank">
<i class="fa fa-github fa-lg" aria-hidden="true"></i> GitHub Organization
</a>
</h4>
</div>
</div>
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<h1>Presentations</h1>
<p>
The following presentations are about the technologies involved in and
related to the radanalytics.io projects. We love our community and the
passion they have for these technologies. If you know of a presentation
that would fit in here, please open a
<a href="https://github.com/radanalyticsio/radanalyticsio.github.io/pulls">pull request</a>
and add it to the list!
</p>
<!-- to add presentatations, see the _data/presentations.yaml file -->
</div>
</div>
<div class="col-lg-10 col-lg-offset-1">
{% assign last_date = "0000" %}
{% assign sorted_presentations = site.presentations | sort: 'date' | reverse %}
{% for pres in sorted_presentations %}
{% assign presyear = pres.date | date: '%Y' %}
{% if presyear != last_date %}
{% if last_date != "0000" %}
</div>
{% endif %}
{% assign last_date = presyear %}
<h1>{{ presyear }}</h1>
<div class="list-group list-view-pf list-view-pf-view">
{% endif %}
<div class="list-group-item">
<div class="list-group-item-header flex-center">
<div class="list-view-pf-expand">
<span class="fa fa-angle-right"></span>
</div>
<div class="list-view-pf-main-info">
<div class="list-view-pf-body">
<div class="list-view-pf-description">
<div class="list-group-item-heading">
<h2> {{ pres.title }}</h2>
<em>{{ pres.presentor }}</em><br/>
</div>
</div>
</div>
</div>
</div>
<div class="list-group-item-container container-fluid hidden">
<div>
<p><em>{% if pres.venue %}{{ pres.venue }} • {% endif %}{% if pres.city %}{{pres.city}} • {% endif %}{{ pres.date | date: '%B %Y' }}</em></p>
{{ pres.content }}
{% for murl in pres.media-url %}
<a href="{{ murl }}">
<i class="fa fa-video-camera" aria-hidden="true"></i>
Presentation media</a>
{% endfor %}
{% if pres.slides-url %}
<a href="{{ pres.slides-url }}">
<i class="fa fa-picture-o" aria-hidden="true"></i>
Slide deck</a>
{% endif %}
{% if pres.handout-url %}
<a href="{{ pres.handout-url }}">
<i class="fa fa-map" aria-hidden="true"></i>
Handout</a>
{% endif %}
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>