15 lines
297 B
Handlebars
15 lines
297 B
Handlebars
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Filmout Manager</title>
|
|
</head>
|
|
<body>
|
|
<div>Screen Resolution : {{width}}x{{height}}</div>
|
|
<select>
|
|
<option> - Select Image Sequence - </option>
|
|
{{#each dirs}}
|
|
<option value="{{this.hash}}">{{this.name}}</option>
|
|
{{/each}}
|
|
</select>
|
|
</body>
|
|
</html> |