-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrowsers.html
More file actions
executable file
·28 lines (27 loc) · 908 Bytes
/
browsers.html
File metadata and controls
executable file
·28 lines (27 loc) · 908 Bytes
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
---
layout: layout.html
title: Browsers
---
<div class="container py-3">
<h1>Browsers</h1>
<p>Just the list of browsers and the release dates.</p>
{% for agent in agents %}
<div class="d-flex">
<div class="pr-4 w-25">
<h5 class="position-sticky" style="top: 0">{{ agent.name }}</h5>
</div>
<div class="flex-grow-1">
<div class="table-responsive">
<table class="table table-striped">
{% for date in agent.dates %}
<tr>
<td class="w-25">{{ date.number }}</td>
<td>{{ date.date | date: "%Y-%m-%d" }}</td>
</tr>
{% endfor %}
</table>
</div>
</div>
</div>
{% endfor %}
</div>