-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (40 loc) · 960 Bytes
/
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
---
title: All the gifs
---
<!DOCTYPE HTML>
<html>
<head>
<title>{{ page.title }}</title>
<style>
body {
margin: 0;
padding: .5em;
background: rgb(25, 25, 25);
color: #ccc;
font-family: sans-serif;
}
#gifs {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
a {
color: #4897d0;
text-decoration: none;
}
</style>
</head>
<body>
<div id="gifs">
{% for file in site.static_files %}
{% if file.extname == ".gif" %}
<a href="{{ file.path | remove_first: "/" }}">
<img src="{{file.path}}" height="100" loading="lazy">
</a>
{% endif %}
{% endfor %}
</div>
<hr>
Source: <a href="https://github.com/jamesrwhite-gifs/jamesrwhite-gifs.github.io">GitHub</a>
</body>
</html>