-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (79 loc) · 2.03 KB
/
index.html
File metadata and controls
91 lines (79 loc) · 2.03 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
---
title: List
---
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{ page.title }}</title>
<link rel="icon" href="data:," />
<style>
body {
font-family:
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
Arial, sans-serif;
line-height: 1.6;
background-color: #252525;
color: #333;
margin: 0;
padding: 20px;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 25px;
background-color: #fff;
border-radius: 1px;
box-shadow: 0 2px 10px rgb(220, 220, 220);
}
h3 {
color: #1a1a1a;
border-bottom: 2px solid #eee;
padding-bottom: 10px;
margin-top: 0;
}
.file-list {
list-style-type: none;
padding-left: 0;
margin: 0;
}
.file-list li {
margin-bottom: 10px;
border-radius: 5px;
transition: background-color 0.2s ease;
}
.file-list li a {
display: block;
padding: 15px 20px;
text-decoration: none;
color: #0056b3;
background-color: #fdfdfd;
border: 1px solid #e0e0e0;
border-radius: 2px;
font-weight: 500;
transition: all 0.2s ease;
}
.file-list li a:hover {
background-color: #f0f8ff;
color: #003d80;
border-color: #cce4ff;
transform: translateY(-2px);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}
</style>
</head>
<body>
<div class="container">
<h3>CSS File List</h3>
<ul class="file-list">
{% for file in site.static_files %} {% if file.extname == '.css' %} {%
if file.dirname == '' or file.dirname == nil %}
<li>
<a href="{{ file.path | relative_url }}">{{ file.name }}</a>
</li>
{% endif %} {% endif %} {% endfor %}
</ul>
</div>
</body>
</html>