Commit c40a4119 authored by Rosanny Sihombing's avatar Rosanny Sihombing
Browse files

fix broken links

parent 16289931
......@@ -69,14 +69,14 @@ app.use(function(req, res, next) {
require('./routes/routes-account')(app, config, passport, i18n);
// Handle 404
app.use(function (req, res, next) {
res.status(404).render('./DE/404')
app.use(function (req, res) {
res.status(404).render('DE/404')
})
// Handle 500 - any server error
app.use(function (err, req, res, next) {
console.error(err.stack)
res.status(500).render('./DE/500', {
res.status(500).render('DE/500', {
error: err
})
})
......
......@@ -38,7 +38,7 @@ html(lang="de")
nav(aria-label="breadcrumb")
ol(class="breadcrumb")
li(class="breadcrumb-item")
a(href="/account") Konto
a(href="/account/") Konto
li(class="breadcrumb-item")
a(href="/account/services") Projekte und Dienste
li(class="breadcrumb-item active" aria-current="page") Neue Projektinformation
......
......@@ -38,7 +38,7 @@ html(lang="de")
nav(aria-label="breadcrumb")
ol(class="breadcrumb")
li(class="breadcrumb-item")
a(href="/account") Konto
a(href="/account/") Konto
li(class="breadcrumb-item active" aria-current="page") Projekte und Dienste
div(class="container")
......
......@@ -38,7 +38,7 @@ html(lang="de")
nav(aria-label="breadcrumb")
ol(class="breadcrumb")
li(class="breadcrumb-item")
a(href="/account") Konto
a(href="/account/") Konto
li(class="breadcrumb-item")
a(href="/account/services") Projekte und Dienste
li(class="breadcrumb-item active" aria-current="page") Information aktualisieren
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment