mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
740 B
45 lines
740 B
const express = require('express')
|
|
const router = express.Router()
|
|
const path = require('path')
|
|
|
|
/* global WIKI */
|
|
|
|
/**
|
|
* Create/Edit document
|
|
*/
|
|
router.get('/e/*', (req, res, next) => {
|
|
res.render('main/editor')
|
|
})
|
|
|
|
/**
|
|
* Administration
|
|
*/
|
|
router.get(['/a', '/a/*'], (req, res, next) => {
|
|
res.render('main/admin')
|
|
})
|
|
|
|
/**
|
|
* Profile
|
|
*/
|
|
router.get(['/p', '/p/*'], (req, res, next) => {
|
|
res.render('main/profile')
|
|
})
|
|
|
|
/**
|
|
* View document
|
|
*/
|
|
router.get('/', (req, res, next) => {
|
|
res.render('main/welcome')
|
|
})
|
|
|
|
/**
|
|
* View document
|
|
*/
|
|
router.get('/*', (req, res, next) => {
|
|
res.render(path.join(WIKI.ROOTPATH, 'themes/default/views/page'), {
|
|
basedir: path.join(WIKI.SERVERPATH, 'views')
|
|
})
|
|
})
|
|
|
|
module.exports = router
|