Browse Source

Added a simple footer as well as passing along author information.

dev-bank
Bryan Miller 6 years ago
parent
commit
81c584643a
4 changed files with 22 additions and 1 deletions
  1. +4
    -0
      app/css/nespaint.css
  2. +1
    -1
      server.js
  3. +15
    -0
      views/footer.html
  4. +2
    -0
      views/index.html

+ 4
- 0
app/css/nespaint.css View File

padding-right: 8px; padding-right: 8px;
} }


.text-align-right{
text-align: right;
}

div.NES-palette{ div.NES-palette{
font-size:0.55em; font-size:0.55em;
} }

+ 1
- 1
server.js View File

app.set('view engine', 'html'); app.set('view engine', 'html');
app.use("/app", express.static(path.join(__dirname, "/app"))); app.use("/app", express.static(path.join(__dirname, "/app")));
app.get('/', function(req, res){ app.get('/', function(req, res){
res.render('index.html', {version:version});
res.render('index.html', {version:version, author:package.author});
}); });


app.listen(port, () => { app.listen(port, () => {

+ 15
- 0
views/footer.html View File

<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>




+ 2
- 0
views/index.html View File

<%- include('workspace.html'); %> <%- include('workspace.html'); %>


</div> </div>

<%- include('footer.html', {version:version, author:author}); %>
</div> </div>
<%- include('tail.html'); %> <%- include('tail.html'); %>

Loading…
Cancel
Save