diff options
author | jackycute | 2015-11-28 21:57:35 -0600 |
---|---|---|
committer | jackycute | 2015-11-28 21:57:35 -0600 |
commit | d6dec55a07ceacbc21aa211b90c18fcf0d189013 (patch) | |
tree | b6f43191518b16f74ca33b1406567a0ffcaa6f32 /templates/listing.html | |
parent | 75ae505a1544d8999e6705aad7ed96ff5a6eb0e5 (diff) | |
parent | f51b7370f030c5cd1235fa7a23514a7e1ccef2dd (diff) |
Merge pull request #43 from x000032001/master
Add Slide Mode
Diffstat (limited to 'templates/listing.html')
-rw-r--r-- | templates/listing.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/listing.html b/templates/listing.html new file mode 100644 index 00000000..2046be1a --- /dev/null +++ b/templates/listing.html @@ -0,0 +1,22 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <title>Directory Listing</title> + <link rel="stylesheet" href="/{{{theme}}}" id="theme"> + <style type="text/css"> + body { + margin: 1em; + } + a { + color: white; + display: block; + } + </style> + <link rel="icon" href="http://i.imgur.com/IVlU2PU.png" sizes="512x512" /> + </head> + + <body> + {{{listing}}} + </body> +</html> |