azkena
This commit is contained in:
parent
88c3794718
commit
1bbe6c5eeb
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +1,2 @@
|
||||
node_modules/
|
||||
package-lock.json
|
||||
package-lock.json
|
1
index.js
1
index.js
@ -7,6 +7,7 @@ const routes = require('./routes');
|
||||
const api = require('./routes/api');
|
||||
|
||||
app.set('port', 8080);
|
||||
app.set('views', __dirname + '/views');
|
||||
app.set('view engine', 'pug');
|
||||
app.use(express.static(path.join(__dirname, 'public')));
|
||||
app.use(bodyParser.urlencoded({extended: true}));
|
||||
|
@ -1,33 +0,0 @@
|
||||
doctype
|
||||
html(lang='eu')
|
||||
head
|
||||
title Node.js Express.js Pug adibidea
|
||||
meta(name='viewport', content='width=device-width, initial-scale=1.0')
|
||||
base(href='/')
|
||||
link(rel='stylesheet', href='css/styles.css')
|
||||
link(rel='stylesheet', href='css/header.css')
|
||||
link(rel='stylesheet', href='css/footer.css')
|
||||
link(rel='shortcut icon', href='#')
|
||||
|
||||
script.
|
||||
window.onload = function () {
|
||||
var logged = "#{logged}"
|
||||
var path = window.location.pathname;
|
||||
if(path != '/'){
|
||||
document.querySelector('.back').style.display = 'block';
|
||||
document.querySelector('.next').style.display = 'none';
|
||||
}else{
|
||||
document.querySelector('.back').style.display = 'none';
|
||||
if(logged) {
|
||||
document.querySelector('.next').style.display = 'block';
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
body
|
||||
|
||||
block header
|
||||
include header
|
||||
block content
|
||||
block footer
|
||||
include footer
|
Loading…
Reference in New Issue
Block a user