diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-01-11 13:55:55 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-01-11 13:55:55 +0100 |
| commit | b3ba48a22ce966e62cfad1671e4ee6f4357bb69f (patch) | |
| tree | 4c670b51c4f43ebf6f857b5999c2bc0f3f0e807c /views | |
| parent | 2e9e542bfb81c3aff407801e3ae3f08eee0fb3d9 (diff) | |
move file api, debug flag on url to show ids
Diffstat (limited to 'views')
| -rw-r--r-- | views/partials/comments.ejs | 2 | ||||
| -rw-r--r-- | views/partials/files.ejs | 2 | ||||
| -rw-r--r-- | views/partials/gallery.ejs | 2 | ||||
| -rw-r--r-- | views/partials/threads.ejs | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/views/partials/comments.ejs b/views/partials/comments.ejs index 17eb6a5..87c9dec 100644 --- a/views/partials/comments.ejs +++ b/views/partials/comments.ejs @@ -8,7 +8,7 @@ <td colspan="2" class="comment"> <div class="body"> <span class="contents">{{comment}}</span> - <div class="date"> + <div class="date" title="{{id}}"> {{date}} {{time}}<br> </div> <div class="edit-links"> diff --git a/views/partials/files.ejs b/views/partials/files.ejs index 72c39af..ec61fe2 100644 --- a/views/partials/files.ejs +++ b/views/partials/files.ejs @@ -2,7 +2,7 @@ <script class="template" type="text/html"> <tr class="file"> <td> - <a href="{{link}}" class="file">{{filename}}</a> + <a href="{{link}}" title="{{id}}" class="file">{{filename}}</a> </td> <td class="{{date_class}}"> {{date}} diff --git a/views/partials/gallery.ejs b/views/partials/gallery.ejs index 7115d4d..053d59c 100644 --- a/views/partials/gallery.ejs +++ b/views/partials/gallery.ejs @@ -2,7 +2,7 @@ <script class="template" type="text/html"> <div> <a href="{{link}}"><img class="thumb" src="{{thumb}}"></a> - <br>(<a href="/profile/{{username}}">{{username}}</a>, {{age}}) + <br>(<a href="/profile/{{username}}">{{username}}</a>, <span class='date'>{{age}}</span>) </div> </script> </div>
\ No newline at end of file diff --git a/views/partials/threads.ejs b/views/partials/threads.ejs index e429219..4da415b 100644 --- a/views/partials/threads.ejs +++ b/views/partials/threads.ejs @@ -34,7 +34,7 @@ <td class="{{color}} title"> <a href="/details/{{id}}">{{title}}</a> </td> - <td class="{{date_class}}"> + <td class="date {{date_class}}"> {{date}} <small>{{time}}</small> </td> <td class="{{views_class}}"> |
