-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
117 lines (114 loc) · 1.47 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
---
links:
- aatrox
- ahri
- akali
- aurelion sol
- azir
- bard
- blitzcrank
- brand
- caitlyn
- darius
- diana
- draven
- ekko
- ekko2
- evelynn
- fiddlesticks
- fiora
- fizz
- galio
- gangplank
- gnar
- gnar2
- illaoi
- irelia
- ivern
- janna
- jax
- jayce
- jhin
- jinx
- karma
- karma2
- karthus
- katarina
- kayle
- kayn
- khazix
- kindred
- kled
- leblanc
- leona
- lulu
- lux
- nami
- orianna
- pantheon
- quinn
- rammus
- reksai
- rengar
- riven
- rumble
- ryze
- shaco
- singed
- sion
- soraka
- swain
- syndra
- taliyah
- talon
- teemo
- thresh
- thresh2
- tristana
- tryndamere
- twisted fate
- twitch
- udyr
- urgot
- vayne
- veigar
- vi
- viktor
- xerath
- yasuo
- yimo
- yorick
- zac
- zac2
- zed
- zoe
- zyra
---
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>dynamicflair test page</title>
<style>
/* reddit styles */
body { font-family: "Roboto",Helvetica,Arial,"Lucida Grande",sans-serif; }
.flair {
font-size: 12px;
display: inline-block;
}
thead th {
width: 150px;
}
table {
table-layout: fixed;
width: 0; /* expands anyway */
}
</style>
<link rel="stylesheet" href="compile.css">
</head>
{% for links in page.links %}
<h3><a href="{{ links }}/">{{ links | capitalize }}</a></h3>
{% endfor %}
<body>
</body>
</html>