@@ -27,6 +27,10 @@ body{ | |||
padding-right: 8px; | |||
} | |||
.text-align-right{ | |||
text-align: right; | |||
} | |||
div.NES-palette{ | |||
font-size:0.55em; | |||
} |
@@ -33,7 +33,7 @@ app.engine('html', require('ejs').renderFile); | |||
app.set('view engine', 'html'); | |||
app.use("/app", express.static(path.join(__dirname, "/app"))); | |||
app.get('/', function(req, res){ | |||
res.render('index.html', {version:version}); | |||
res.render('index.html', {version:version, author:package.author}); | |||
}); | |||
app.listen(port, () => { |
@@ -0,0 +1,15 @@ | |||
<div class="pure-g"> | |||
<div class="pure-u-1-3"> | |||
<span class="simple-padding"> | |||
Version: <%= version %> | |||
</span> | |||
</div> | |||
<div class="pure-u-2-3 text-align-right"> | |||
<span class="simple-padding"> | |||
Author: <%= author %> | |||
</span> | |||
</div> | |||
</div> | |||
@@ -17,5 +17,7 @@ | |||
<%- include('workspace.html'); %> | |||
</div> | |||
<%- include('footer.html', {version:version, author:author}); %> | |||
</div> | |||
<%- include('tail.html'); %> |