Skip to content

Commit

Permalink
fix: use single quotes in directory listing html
Browse files Browse the repository at this point in the history
  • Loading branch information
flakey5 committed Nov 15, 2023
1 parent d75c442 commit 6ce8078
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/templates/directoryListing.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
<body>
<h1>Index of {{pathname}}</h1><hr /><pre><a href='../'>../</a>
{{#each entries}}
<a href='{{href}}'>{{name}}</a>{{displayNamePaddingRight}}
{{lastModified}}
{{size}}
<a href="{{href}}">{{name}}</a>{{displayNamePaddingRight}} {{lastModified}} {{size}}
{{/each}}
</pre><hr /></body>
</html>

0 comments on commit 6ce8078

Please sign in to comment.