diff --git a/app/index.html b/app/index.html index 576d861d..1fc8e993 100644 --- a/app/index.html +++ b/app/index.html @@ -15,7 +15,6 @@ - diff --git a/app/js/templates.js b/app/js/templates.js deleted file mode 100644 index a52d71ae..00000000 --- a/app/js/templates.js +++ /dev/null @@ -1,63 +0,0 @@ -window.gitlit = window.gitlit || {}; -gitlit.templates = { - main: ejs.compile(` - -
- -
- `), - files: ejs.compile(` - - - - - - - - - - - <% files.forEach((file) => { %> - - - - - - <% }); %> - -
filestatusaction
<%= file.file %><%= file.lockedBy ? file.lockedBy + ' (id: ' + file.id + ')' : 'not locked' %> - - Lock - - - Unlock - -
- -
- - Refresh - -
- `), - isNoGitLfsRepo: ejs.compile(` -
- <%= repoDir %> is not a git lfs repo. -
- `), - noGitLfsFiles: ejs.compile(` -
- no files tracked with lfs here. -
- `) -};