Initial commit

This commit is contained in:
Carl Pearson
2017-03-12 21:27:57 -05:00
parent 6c09e2b8de
commit be45676d32
141 changed files with 8537 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{{ $ := .root }}
{{ $page := .page }}
<!-- Selected Talks widget -->
<div class="row">
<div class="col-xs-12 col-md-4 section-heading">
<h1>{{ with $page.Title }}{{ . | markdownify }}{{ end }}</h1>
{{ with $page.Params.subtitle }}<p>{{ . | markdownify }}</p>{{ end }}
</div>
<div class="col-xs-12 col-md-8">
{{ with $page.Content }}<p>{{ . | markdownify }}</p>{{ end }}
{{ if $page.Params.detailed_list }}
{{ range (where (where $.Data.Pages "Type" "talk") ".Params.selected" true) }}
{{ partial "talk_li_detailed" . }}
{{ end }}
{{ else }}
<ul class="fa-ul">
{{ range (where (where $.Data.Pages "Type" "talk") ".Params.selected" true) }}
{{ partial "talk_li_simple" . }}
{{ end }}
</ul>
{{ end }}
</div>
</div>