Skip to content

Commit

Permalink
Added a flex wrapper to show.ejs. Freaking ugly before
Browse files Browse the repository at this point in the history
  • Loading branch information
Tiffany White committed Aug 30, 2017
1 parent eaa4952 commit d9a0c30
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ app.get('/texts', function(req, res) {
res.render('texts');
});

app.get('/show', function(req, res) {
res.render('show');
});

app.get('/faq', function(req, res) {
res.render('faq');
});
Expand Down
8 changes: 8 additions & 0 deletions views/show.ejs
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
<% include partials/header %>

<body>
<div class="page-flexbox-wrapper">
<% include partials/nav %>
<main class="mdl-layout__content">
<div class="divider" id="show"></div>
<div class="section z-depth-2">
<p class="flow-text">This is where your markdown files live.</p>
</div>
</main>
</div>

</body>


Expand Down

0 comments on commit d9a0c30

Please sign in to comment.