Skip to content

Commit ca64ce8

Browse files
committed
add favicon
1 parent a710375 commit ca64ce8

File tree

2 files changed

+27
-25
lines changed

2 files changed

+27
-25
lines changed

src/favicon.ico

31.3 KB
Binary file not shown.

src/index.html

Lines changed: 27 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<meta charset="utf-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77
<link rel="stylesheet" type="text/css" href="styles.css"/>
8+
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
89
<script src="https://unpkg.com/vue"></script>
910
<title>Public APIs</title>
1011
</head>
@@ -20,31 +21,32 @@ <h3 class="center-text">
2021
</h3>
2122
</header>
2223
<body>
23-
<div class=center-text>
24-
<input type="text" id="searchbox" onkeyup="filterRows()" placeholder="search for a service">
25-
</div>
26-
<div id="app">
27-
<div style="overflow-x:auto;">
28-
<table id="entries">
29-
<thead>
30-
<tr class="tbl-head">
31-
<th>API</th>
32-
<th>Description</th>
33-
<th>Authorization</th>
34-
<th>HTTPS</th>
35-
<th>Category</th>
36-
</tr>
37-
</thead>
38-
<tbody>
39-
<tr v-for="item in data" v-show="filtered(item)">
40-
<td><a :href="item.Link">{{ item.API }}</a></td>
41-
<td>{{ item.Description }}</td>
42-
<td>{{ (item.Auth) ? item.Auth : '-' }}</td>
43-
<td>{{ (item.HTTPS) ? '✔' : '✖' }}</td>
44-
<td class="lol">{{ item.Section }}</td>
45-
</tr>
46-
</tbody>
47-
</table>
24+
<div class=center-text>
25+
<input type="text" id="searchbox" onkeyup="filterRows()" placeholder="search for a service">
26+
</div>
27+
<div id="app">
28+
<div style="overflow-x:auto;">
29+
<table id="entries">
30+
<thead>
31+
<tr class="tbl-head">
32+
<th>API</th>
33+
<th>Description</th>
34+
<th>Authorization</th>
35+
<th>HTTPS</th>
36+
<th>Category</th>
37+
</tr>
38+
</thead>
39+
<tbody>
40+
<tr v-for="item in data" v-show="filtered(item)">
41+
<td><a :href="item.Link">{{ item.API }}</a></td>
42+
<td>{{ item.Description }}</td>
43+
<td>{{ (item.Auth) ? item.Auth : '-' }}</td>
44+
<td>{{ (item.HTTPS) ? '✔' : '✖' }}</td>
45+
<td class="lol">{{ item.Section }}</td>
46+
</tr>
47+
</tbody>
48+
</table>
49+
</div>
4850
</div>
4951
<script src="scripts.js"></script>
5052
</body>

0 commit comments

Comments
 (0)