minor typographical changes

merge-requests/208/head
fatchan 5 years ago
parent 3823fce7be
commit 6d3f2c9895
  1. 2
      helpers/render.js
  2. 2
      server.js
  3. 3
      views/includes/head.pug

@ -1,6 +1,6 @@
'use strict';
const { globalLimits, boardDefaults, cacheTemplates, meta }= require(__dirname+'/../configs/main.json')
const { globalLimits, boardDefaults, cacheTemplates, meta } = require(__dirname+'/../configs/main.json')
, { outputFile } = require('fs-extra')
, pug = require('pug')
, path = require('path')

@ -69,7 +69,7 @@ const express = require('express')
//default settings
app.locals.defaultTheme = configs.boardDefaults.theme;
app.locals.globalLimits = configs.globalLimits
app.locals.globalLimits = configs.globalLimits;
app.locals.themes = themes;
// routes

@ -4,6 +4,5 @@ link(rel='stylesheet' href='/css/style.css')
- const theme = board ? board.settings.theme : defaultTheme;
link#theme(rel='stylesheet' data-theme=theme href=`/css/themes/${theme}.css`)
noscript
style
| .jsonly { display: none }
style .jsonly { display: none }
link(rel='shortcut icon' href='/favicon.ico' type='image/x-icon')

Loading…
Cancel
Save