whitespace fixes

merge-requests/208/head
fatchan 5 years ago
parent 32528e53bc
commit d6d9a1af38
  1. 9
      views/includes/pages.pug
  2. 2
      views/mixins/post.pug
  3. 2
      views/pages/board.pug
  4. 2
      views/pages/catalog.pug
  5. 4
      views/pages/thread.pug

@ -1,7 +1,12 @@
| Page:
- for(let i = 1; i <= pages; i++)
if i === page
span: a(href=`/${board._id}?p=${i}`) [#{i}]
span
a(href=`/${board._id}?p=${i}`) [#{i}]
|
else
span: a(href=`/${board._id}?p=${i}`) #{i}
span
a(href=`/${board._id}?p=${i}`) #{i}
|
| |

@ -34,7 +34,7 @@ mixin post(post, truncate, manage=false, globalmanage=false)
|
span.user-id(style=`background: #${post.userId}`) #{post.userId}
|
span: a(href=postURL) ##{post.postId}
span: a(href=postURL) #{post.postId}
.post-data
if post.files.length > 0
.post-files

@ -11,6 +11,7 @@ block content
nav.pages#top
include ../includes/pages.pug
a(href='#bottom') [Bottom]
|
a(href=`/${board._id}/catalog`) [Catalog]
hr(size=1)
form(action='/forms/board/'+board._id+'/actions' method='POST' enctype='application/x-www-form-urlencoded')
@ -26,5 +27,6 @@ block content
hr(size=1)
nav.pages#bottom
a(href='#top') [Top]
|
a(href=`/${board._id}/catalog`) [Catalog]
include ../includes/actionfooter.pug

@ -8,6 +8,7 @@ block content
include ../includes/boardheader.pug
nav.pages#top
a(href='#bottom') [Bottom]
|
a(href=`/${board._id}/`) [Return]
hr(size=1)
if threads.length === 0
@ -19,4 +20,5 @@ block content
hr(size=1)
nav.pages#bottom
a(href='#top') [Top]
|
a(href=`/${board._id}/`) [Return]

@ -15,7 +15,9 @@ block content
.mode Posting mode: Reply
nav.pages#top
a(href='#bottom') [Bottom]
|
a(href=`/${board._id}/`) [Return]
|
a(href=`/${board._id}/catalog`) [Catalog]
hr(size=1)
form(action=`/forms/board/${board._id}/actions` method='POST' enctype='application/x-www-form-urlencoded')
@ -27,6 +29,8 @@ block content
hr(size=1)
nav.pages#bottom
a(href='#top') [Top]
|
a(href=`/${board._id}/`) [Return]
|
a(href=`/${board._id}/catalog`) [Catalog]
include ../includes/actionfooter.pug

Loading…
Cancel
Save