hackdoor
Version:
##
29 lines (25 loc) • 545 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>{{title}}</title>
<style>
a {
display: inline-block;
width: 200px;
line-height: 40px;
box-sizing: border-box;
padding: 0 10px;
overflow: hidden;
white-space: nowrap;
}
</style>
</head>
<body>
{{#each files}}
<a href="{{../dir}}/{{this}}">{{this}}</a>
{{/each}}
</body>
</html>