Added a text input filed to filter directory's content.
This commit is contained in:
parent
3830588748
commit
f6dd6b76d0
@ -17,7 +17,7 @@ const (
|
|||||||
index__2 = `</span><p>Files: `
|
index__2 = `</span><p>Files: `
|
||||||
index__3 = ` (`
|
index__3 = ` (`
|
||||||
index__4 = `); Directories: `
|
index__4 = `); Directories: `
|
||||||
index__5 = `.</p><table><thead><tr><th>Name</th><th>Date</th><th>Size</th></tr><tr><td><a href="../">../</a></td></tr></thead><tbody>`
|
index__5 = `.</p><input type="text" name="filter" placeholder="Type in to filter (case insensitive)"/><table><thead><tr><th>Name</th><th>Date</th><th>Size</th></tr><tr><td><a href="../">../</a></td></tr></thead><tbody>`
|
||||||
index__6 = `</tbody></table></section><section><span>`
|
index__6 = `</tbody></table></section><section><span>`
|
||||||
index__7 = `</span></section><section id="usage"><p>In an overlay use a mouse wheel to change a scale of a video or a picture. Use left and right arrow keys to go through media. Use escape key to close an overlay, or click outside a media. An audio volume is being kept across site using LocalStorage API.</p></section><section id="privacy"><h2>Privacy statements</h2><p>I collect access logs that include access date and time, IP-address, User-Agent, referer URL that tells me where have you came from, request that you sent to me. In addition there are GeoIP information added based on your IP-address that includes country, region, and city for my convenience.</p><p>This site makes use of JavaScript purely for convenient functionality, like being able to watch video, listen to music, and look images in an overlay without the need to open a file in a new tab or return back.</p></section><footer>2017—2022 Arav <<a href="mailto:me@arav.top">me@arav.top</a>></footer><div id="overlay"><button name="prev">❰</button><div><div></div><span></span></div><button name="next">❱</button></div></body></html>`
|
index__7 = `</span></section><section id="usage"><p>In an overlay use a mouse wheel to change a scale of a video or a picture. Use left and right arrow keys to go through media. Use escape key to close an overlay, or click outside a media. An audio volume is being kept across site using LocalStorage API.</p></section><section id="privacy"><h2>Privacy statements</h2><p>I collect access logs that include access date and time, IP-address, User-Agent, referer URL that tells me where have you came from, request that you sent to me. In addition there are GeoIP information added based on your IP-address that includes country, region, and city for my convenience.</p><p>This site makes use of JavaScript purely for convenient functionality, like being able to watch video, listen to music, and look images in an overlay without the need to open a file in a new tab or return back.</p></section><footer>2017—2022 Arav <<a href="mailto:me@arav.top">me@arav.top</a>></footer><div id="overlay"><button name="prev">❰</button><div><div></div><span></span></div><button name="next">❱</button></div></body></html>`
|
||||||
index__8 = `<tr><td><a href="`
|
index__8 = `<tr><td><a href="`
|
||||||
|
@ -26,6 +26,7 @@ html(lang='en')
|
|||||||
section#files
|
section#files
|
||||||
span!= currentPath
|
span!= currentPath
|
||||||
p Files: #{stats.Files} (#{stats.FilesSize}); Directories: #{stats.Directories}.
|
p Files: #{stats.Files} (#{stats.FilesSize}); Directories: #{stats.Directories}.
|
||||||
|
input(type="text", name="filter" placeholder="Type in to filter (case insensitive)")
|
||||||
table
|
table
|
||||||
thead
|
thead
|
||||||
tr
|
tr
|
||||||
|
Loading…
Reference in New Issue
Block a user