-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathlist.html
More file actions
31 lines (31 loc) · 1.64 KB
/
list.html
File metadata and controls
31 lines (31 loc) · 1.64 KB
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
{{ define "main" }}
<div class="page-content">
{{- partial "pageheader.html" ( dict "header" "We have the best speakers." "subHeader" "Security professionals from world-class firms" ) -}}
<p class="speakers-from">SPEAKERS FROM</p>
<div class="company-strip">
<img class="company-strip-logo" src="/company-logos/akamai.svg" alt="Akamai" />
<img class="company-strip-logo" src="/company-logos/citizens-bank.svg" alt="Citizen" />
<img class="company-strip-logo" src="/company-logos/discover.svg" alt="Discover" />
<img class="company-strip-logo" src="/company-logos/ernst-and-young.svg" alt="E&Y" />
<img class="company-strip-logo" src="/company-logos/fidelity.svg" alt="Fidelity" />
<img class="company-strip-logo" src="/company-logos/raytheon.svg" alt="Raytheon" />
<img class="company-strip-logo" src="/company-logos/crowdstrike.svg" alt="Crowdstrike" />
</div>
<div class="page-content-separator"></div>
<div class="page-list">
{{ range (.CurrentSection.Pages.ByParam "eventDate").Reverse }}
{{- partial "listcard.html"
( dict
"cardType" "event"
"cardTitle" .Page.Title
"cardDescription" .Page.Summary
"eventDate" .Params.EventDate
"eventDateTime" (dateFormat "January 2, 2006 at 3:04 PM" .Params.EventDate)
"buttonLink" .Params.EventLink
"buttonText" "View on LinkedIn"
)
-}}
{{ end }}
</div>
</div>
{{ end }}