Welcome to mirror list, hosted at ThFree Co, Russian Federation.

single.html « sessions « layouts - github.com/GDGToulouse/devfest-theme-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bd07658719366a51bb24f311fddb07fd60ae1e66 (plain)
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
{{ define "main" }}
<section class="talk">

	<header class="tag-{{ anchorize (delimit .Params.tags "" ) }}">
	<div class="tags">
		{{ range .Params.tags }}
			{{ range first 1 (where $.Site.Data.categories "key" .) }}
			<span>{{ .name }}</span>
			{{ end }}
		{{ end }}
	</div>

	<h1 class="text">{{ .Title }}</h1>
	<span class="language {{ anchorize .Params.language }}"></span>
	</header>

	<div class="info">
		<div class="complexity">{{ .Params.level }}</div>
		<div class="type type-{{ anchorize .Params.format }}">{{ .Params.format }}</div>

		<div class="detail">
			<ul class="speakers">
				{{ range where .Site.RegularPages "Params.key" "in" .Params.speakers }}
				<li>
					<a class="visually-hidden" aria-hidden="true" href="/speakers/{{ .Params.key }}">{{ .Params.name }}</a>
					<a class="speaker" href="/speakers/{{ .Params.key }}">
						<div class="speaker-img" style="background-image: url({{ .Params.photoURL }});"></div>
						<strong class="speaker-name">{{ .Params.name }}</strong>
						<span class="speaker-country">{{ .Params.city }}</span>
						<div class="speaker-company">{{ .Params.company }}</div>
					</a>
				</li>
				{{ end }}
			</ul>
			<div class="content">{{ .Content }}</div>
		</div>

	</div>


	<div class="media">
		{{ if .Params.videoId }}
		<div class="video" style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
			<iframe src="//www.youtube.com/embed/{{ .Params.videoId }}?autoplay=1"
			        style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" allowfullscreen
			        title="YouTube Video"></iframe>
		</div>
		{{ end }}

		{{ if .Params.presentation }}
		<a class="social-slides"
		   href="{{ .Params.presentation }}"
		   rel="noopener noreferrer"
		   target="_blank">
			{{ partial "icon.html" "slides" }}
			Voir les slides
		</a>
		{{ end }}

	</div>

</section>
{{ end }}