-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
206d844
commit 2d142bb
Showing
13 changed files
with
190 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
+++ | ||
aliases = ["talks", "slidedecks", "workshops", "sessions"] | ||
title = "Talks, Workshops, and Trainings" | ||
subtitle = "Slides, handouts, and other materials from public speaking engagements." | ||
+++ | ||
|
||
Sharing knowledge with others is the main idea of this website. | ||
Here you can find slides, handouts, and other materials from public speaking engagements, most of which are open source and free to use as a | ||
basis for your own work. [Take look at the license](/license) for details if you want to use these yourself! | ||
If any talk is licensed differently, it will be noted in the talk's description. | ||
|
||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{{ $deck := .deck }} | ||
{{ $title := $deck.title }} | ||
{{ $subtitle := $deck.subtitle }} | ||
{{ $image := $deck.image }} | ||
{{ $date := $deck.date }} | ||
{{ $author := $deck.authors}} | ||
{{ $venue := $deck.venue}} | ||
{{ $link := $deck.link}} | ||
{{ $description := $deck.description}} | ||
{{ $type := $deck.type}} | ||
|
||
<div class="recommendation-item revealOnScroll delay-1" data-animation="fadeInLeft"> | ||
<div class="recommendation-title"> | ||
<span class="recommendation-type">{{ $type }}</span> | ||
<h3 id={{ replace $title " " "-" | lower }}>{{ $title }}: {{ $subtitle }}</h3> | ||
</div> | ||
<div class="recommendation-content"> | ||
<div class="recommendation-image"> | ||
<a href="{{ $link }}" target="_blank" rel="noreferrer"> | ||
{{if $image}} | ||
<img src="{{ .Site.BaseURL }}/images/presentations/{{$image}}"/> | ||
{{else}} | ||
<img src="{{ .Site.BaseURL }}/images/presentations/default.png"/> | ||
{{end}} | ||
</a> | ||
</div> | ||
<div class="recommendation-text"> | ||
{{if $description}} | ||
<div class="recommendation-description text-item"> | ||
<b>abstract:</b> | ||
<p>{{ $description }}</p> | ||
</div> | ||
{{end}} | ||
{{if $link}} | ||
<div class="link text-item"> | ||
<b>link:</b> | ||
<a href="{{ .Site.BaseURL }}/presentations/{{ $link }}" target="_blank" rel="noreferrer">Click here for the slidedeck!</a> | ||
</div> | ||
{{end}} | ||
{{if $author}} | ||
<div class="author text-item"> | ||
Presented on {{ $date }} by {{ $author }} at <a href="{{ .Site.BaseURL }}/presentations/{{ $link }}" target="_blank">{{ $venue }}</a> | ||
</div> | ||
{{end}} | ||
</div> | ||
</div> | ||
</div> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,29 @@ | ||
{{ define "main" }} | ||
{{ partial "reveal-hugo/slides" (slice .Page) }} | ||
{{ partial "reveal-hugo/slides" (where .Pages "Kind" "page") }} | ||
{{ partial "navbar.html" . }} | ||
{{ partial "navbar-clone.html" . }} | ||
|
||
{{ partial "title-section.html" . }} | ||
|
||
<section class="section section-feature-grey is-medium" id="tools"> | ||
<div class="container"> | ||
|
||
<div class="content-wrapper"> | ||
|
||
{{ .Content }} | ||
|
||
<div class="recommendation-wrapper"> | ||
{{ range $slides := (sort (index .Site.Data "presentations").slidedeck "title" "asc") }} | ||
{{ partial "slidedeck.html" (dict "deck" $slides) }} | ||
{{ end }} | ||
</div> | ||
|
||
</div> | ||
|
||
</div> | ||
</section> | ||
|
||
{{ if .Site.Params.footer }} | ||
{{ partial "footer.html" . }} | ||
{{ end }} | ||
|
||
{{ end }} |
Oops, something went wrong.