-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathpresentation-archive.html
More file actions
130 lines (126 loc) · 6.47 KB
/
presentation-archive.html
File metadata and controls
130 lines (126 loc) · 6.47 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{% extends "general/two-column.html" %}
{% set active_page = "resources" -%}
{% set title = "Presentation Archive | MITRE ATT&CK®" -%}
{% set parsed = page.data | from_json %}
{% import 'macros/navigation.html' as navigation %}
{% block innerleft %}
<div id="sidebars"></div>
{% endblock %}
{% block innerright %}
<!--stopindex-->
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/">Home</a></li>
<li class="breadcrumb-item"><a href="/resources">Resources</a></li>
<li class="breadcrumb-item"><a href="/resources/learn-more-about-attack">Learn More about ATT&CK</a></li>
<li class="breadcrumb-item">Presentation Archive</li>
</ol>
<div class="container-fluid pb-3">
<div class="getting-started">
<div class="clearfix pb-3">
<div class="clearfix">
<h1>Presentation Archive</h1>
<div class="card card-filter">
<div class="card-body">
<strong>
Date of Presentation
</strong>
<div id="filterMenu">
<div>
<input type="radio" name="dates" checked="checked" id="All-years" onchange="filterMenu()">
<label for="All-years">All years</label>
</div>
<div>
<input type="radio" name="dates" id="Last-1-year" onchange="filterMenu()">
<label for="Last-1-year">Last 1 year</label>
</div>
<div>
<input type="radio" name="dates" id="Last-3-years" onchange="filterMenu()">
<label for="Last-3-years">Last 3 years</label>
</div>
<strong>
Presentation Materials
</strong>
<div>
<input type="checkbox" checked="checked" id="Slide-Deck" onchange="filterMenu()">
<label for="SlideDeck">Slide Deck</label>
</div>
<div>
<input type="checkbox" checked="checked" id="Recording" onchange="filterMenu()">
<label for="Recording">Recording</label>
</div>
</div>
</div>
</div>
<div class="getting-started-content">
<p>
Browse our archive of presentations by MITRE’s ATT&CK team, covering various cybersecurity topics related to ATT&CK. Presented at different conferences, these talks offer valuable insights and expertise from our team members.
</p>
<input type="text" class="page-search" id="searchPresentation" onkeyup="searchPresentation()" placeholder="Search Presentations">
<h2>Presentations</h2>
<h6 class="presentation-count"></h6>
{% for presentation in parsed.presentations %}
<div class="card w-60 card-presentation">
<div class="card-body">
<strong>
<div class="title">
{{ presentation.name }}
</div>
</strong>
<p></p>
<div>
{{ presentation.presenters }}
</div>
<div class="date">
{{ presentation.date }}
</div>
<p></p>
<div class="timeline-card-body">
{{ presentation.description }}
</div>
<p></p>
<div class="material">
{% if "url" in presentation %}
<a href="{{ presentation.url }}">
<button type="button" class="slide-button">
<span class="slide-button-text">
<span>
Recording
</span>
</span>
<span class="slide-button-icon">
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</span>
</button>
</a>
{% endif %}
{% if "slides" in presentation %}
<a class="my-2 {% if 'url' in presentation %}ml-2{% endif %}" href="{{ presentation.slides }}">
<button type="button" class="slide-button slide-button-secondary">
<span class="slide-button-text">
<span>
Slide Deck
</span>
</span>
<span class="slide-button-icon">
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</span>
</button>
</a>
{% endif %}
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</div>
{% endblock %}
<!--startindex-->
{% block scripts %}
{{ super() }}
<!--SCRIPTS-->
<script src="/theme/scripts/sidebar-load-all.js"></script>
<script src="/theme/scripts/search-presentation.js"></script>
{% endblock %}