diff options
Diffstat (limited to 'showcase_tpl.html')
-rw-r--r-- | showcase_tpl.html | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/showcase_tpl.html b/showcase_tpl.html deleted file mode 100644 index d20596b..0000000 --- a/showcase_tpl.html +++ /dev/null | |||
@@ -1,42 +0,0 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html lang="en"> | ||
3 | |||
4 | <head> | ||
5 | <meta charset="utf-8" /> | ||
6 | <meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
7 | <meta name="robots" content="noindex" /> | ||
8 | |||
9 | <link rel="canonical" href="$url.full$"> | ||
10 | <link rel="shortcut icon" href="/favicon.ico" /> | ||
11 | |||
12 | <style> | ||
13 | body { | ||
14 | display: flex; | ||
15 | flex-flow: row wrap; | ||
16 | max-width: 600px; | ||
17 | margin: 0 auto; | ||
18 | padding: 2rem; | ||
19 | } | ||
20 | |||
21 | .icon { | ||
22 | width: 16px; | ||
23 | height: 16px; | ||
24 | margin: .2rem; | ||
25 | padding: .4rem; | ||
26 | border: 1px solid #ddd; | ||
27 | border-radius: 3px; | ||
28 | } | ||
29 | </style> | ||
30 | |||
31 | <title>iro icons showcase</title> | ||
32 | </head> | ||
33 | |||
34 | <body> | ||
35 | $for(icons)$ | ||
36 | <div class="icon" title="$it.title$"> | ||
37 | $it.content$ | ||
38 | </div> | ||
39 | $endfor$ | ||
40 | </body> | ||
41 | |||
42 | </html> | ||