File tree 4 files changed +12
-6
lines changed
4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 13
13
favicon : " /images/site/favicon.png"
14
14
15
15
projectInfo :
16
- github : https://github.com/educates
16
+ github : https://github.com/vmware-tanzu-labs/educates-training-platform
17
+ github-org : https://github.com/educates
17
18
slack : slack.educates.dev
18
19
docs : https://docs.educates.dev
19
20
@@ -22,12 +23,12 @@ maintainers:
22
23
23
24
github : grahamdumpletong
24
25
image : " /images/author/graham.jpeg"
25
- position : " Project Lead"
26
+ position : " Project Lead Engineer "
26
27
- name : " Jorge Morales"
27
28
28
29
github : jorgemoralespou
29
30
image : " /images/author/jorge.jpeg"
30
- position : " Product Manager and Developer "
31
+ position : " Project Manager and Engineer "
31
32
32
33
# some summary about the project. These will show as carrousel in the landing page
33
34
summary :
Original file line number Diff line number Diff line change @@ -113,6 +113,10 @@ <h5>{{ i18n "useful_links" }}</h5>
113
113
< li > < a href ={{ printf "%s" $value }} target="_blank " rel ="noopener ">
114
114
< span > < i class ="fab fa-slack "> </ i > </ span > < span > {{ $value }}</ span >
115
115
</ a > </ li >
116
+ {{ else if (eq $key "github-org") }}
117
+ < li > < a href ={{ printf "%s" $value }} target="_blank " rel ="noopener ">
118
+ < span > < i class ="fab fa-github "> </ i > </ span > < span > {{ $value }}</ span >
119
+ </ a > </ li >
116
120
{{ else if (eq $key "github") }}
117
121
< li > < a href ={{ printf "%s" $value }} target="_blank " rel ="noopener ">
118
122
< span > < i class ="fab fa-github "> </ i > </ span > < span > {{ $value }}</ span >
Original file line number Diff line number Diff line change 141
141
</ span >
142
142
</ div >
143
143
< div class ="col-md-6 right-half d-flex justify-content-center align-items-center ">
144
- < video controls class ="video " autoplay >
144
+ < video controls class ="video " autoplay loop >
145
145
< source src ="videos/screencast.webm " type ="video/webm ">
146
146
Your browser does not support the video tag.
147
147
</ video >
Original file line number Diff line number Diff line change 1
1
{{ $src := .Get "src" }}
2
2
{{ $type := .Get "type" }}
3
- {{ $autoplay := .Get "autoplay" | default "false" }}
3
+ {{ $autoplay := .Get "autoplay" | default "true" }}
4
+ {{ $loop := .Get "loop" | default "true" }}
4
5
{{/*
5
6
A page can have multiple videos. We need to generate unique id for them.
6
7
Here, we are generating a sequence from 1 to 200 and taking the first element after a shuffle.
9
10
*/}}
10
11
{{ $randNumber := index (seq 200 | shuffle) 0 }}
11
12
12
- < video class ="video-player " id ="video-{{ $randNumber }} " playsinline controls {{ if eq $autoplay "true" }}autoplay{{ end }}>
13
+ < video class ="video-player " id ="video-{{ $randNumber }} " playsinline controls {{ if eq $autoplay "true" }}autoplay{{ end }} {{ if eq $loop "true" }}loop{{ end }} >
13
14
< source src ="{{ $src }} " type ="{{ $type | default "video /mp4" }}" />
14
15
</ video >
You can’t perform that action at this time.
0 commit comments