diff options
Diffstat (limited to 'views/partials/comments.ejs')
| -rw-r--r-- | views/partials/comments.ejs | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/views/partials/comments.ejs b/views/partials/comments.ejs index 97d4cea..6226a61 100644 --- a/views/partials/comments.ejs +++ b/views/partials/comments.ejs @@ -1,8 +1,8 @@ -<table id="comments" width="450"> +<table id="comments"> <script class="template" type="text/html"> <tr> <td class="user"> - <a href="/profile/{{username}}"><img src="//www.carbonpictures.com/bucky/data/profile/.thumb/al.{{username}}.jpg"></a><br> + <a href="/profile/{{username}}"><div class="avatar" style="background-image:url(/data/profile/{{username}}.jpg)"></div></a> <a href="/profile/{{username}}">{{username}}</a> </td> <td colspan="2" class="comment"> @@ -20,4 +20,16 @@ </td> </tr> </script> +</table> + +<table id="comment_form"> + <tr> + <td> + <form> + <textarea name="comment"></textarea><br> + <input type="file" multiple> + <input type="submit" value="POST" /> + </form> + </td> + </tr> </table>
\ No newline at end of file |
