-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy patharchive.html
More file actions
43 lines (37 loc) · 1.46 KB
/
archive.html
File metadata and controls
43 lines (37 loc) · 1.46 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
32
33
34
35
36
37
38
39
40
41
42
---
layout: default
title: Archive
permalink: /archive/
---
{% include top-section.html %}
<section id="archive" class="archive" style="background-color: #f8f9fa; padding: 60px 0;">
<div class="container-fluid px-md-5">
<div class="col-12">
<p class="lead mb-5 text-center">Past BSidesNYC conferences — sessions, slides, and recordings.</p>
<div class="accordion" id="archiveAccordion">
{% include archive-year.html year="2025" %}
{% include archive-year.html year="2024" %}
{% include archive-year.html year="2023" %}
{% include archive-year.html year="2018" %}
{% include archive-year.html year="2016" %}
</div>
</div>
</div>
</section>
{% include video-provider.html %}
<!-- Video overlay modal -->
<div class="modal fade" id="videoModal" tabindex="-1" role="dialog" aria-labelledby="videoModalTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-xl" role="document">
<div class="modal-content bg-dark border-0">
<div class="modal-header border-0 py-2 px-3">
<h5 class="modal-title text-white m-0" id="videoModalTitle"></h5>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body p-3">
<div id="player-container">
<video id="player" playsinline controls></video>
</div>
</div>
</div>
</div>
</div>