-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·48 lines (47 loc) · 1.55 KB
/
index.html
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
---
layout: layout.html
title: Browser features
---
<div class="container py-3">
<h1>Css4</h1>
<p>
This is an overview built with the <a href="https://www.npmjs.com/package/caniuse-db">caniuse-db</a> package.
</p>
<p>
The overview here is the date when major browsers (<i class="fab fa-chrome"></i> chrome,
<i class="fab fa-firefox"></i> firefox, <i class="fab fa-edge"></i> edge, <i class="fab fa-safari"></i> safari)
support the item, ordered by the date of the latest browser that supports the feature. The source can be found
<a href="https://github.com/disjfa/css4">here</a>.
</p>
<p>
This page was generated on: {{ currentDate }}.
</p>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>Date ok</th>
<th>Name</th>
<th>Title</th>
</tr>
</thead>
<tbody>
{% for item in stats %}
<tr>
<td class="text-nowrap">
{{ item.date | date: "%Y-%m-%d" }}
</td>
<td>
<a href="https://caniuse.com/{{ item.feature.name }}">
{{ item.feature.name }}
</a>
</td>
<td>
{{ item.feature.title }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>