mirror of
https://github.com/len0rd/personal-website.git
synced 2025-03-01 03:51:57 -05:00
bump ejs and fix resulting issues
This commit is contained in:
parent
482c449094
commit
01b5ae06ac
1083
package-lock.json
generated
1083
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -19,7 +19,7 @@
|
||||||
"homepage": "https://github.com/len0rd/personal-website#readme",
|
"homepage": "https://github.com/len0rd/personal-website#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dynamic-scrollspy": "^0.2.0",
|
"dynamic-scrollspy": "^0.2.0",
|
||||||
"ejs": "^2.7.4",
|
"ejs": "^3.1.8",
|
||||||
"express": "^4.17.1",
|
"express": "^4.17.1",
|
||||||
"mkdirp": "^1.0.4",
|
"mkdirp": "^1.0.4",
|
||||||
"showdown": "^1.9.1",
|
"showdown": "^1.9.1",
|
||||||
|
|
|
@ -12,7 +12,7 @@ As I'm writing this page after the fact (about a year since originally making th
|
||||||
|
|
||||||
- [NPM](https://www.npmjs.com) for a bunch of support packages
|
- [NPM](https://www.npmjs.com) for a bunch of support packages
|
||||||
|
|
||||||
- [ExpressJS](https://expressjs.com) for amped up static pages. Express is great for beginners that want a simple framework for a static website with no code duplication
|
- [ExpressJS](https://expressjs.com) with [ejs](https://ejs.co/) for amped up static pages. Express is great for beginners that want a simple framework for a static website with no code duplication
|
||||||
|
|
||||||
- [Bootstrap](https://getbootstrap.com) to make it all pretty
|
- [Bootstrap](https://getbootstrap.com) to make it all pretty
|
||||||
|
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<% include ../partials/include %>
|
<%- include('../partials/include') %>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<% include ../partials/nav %>
|
<%- include('../partials/nav') %>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<div class="container-cenMain">
|
<div class="container-cenMain">
|
||||||
|
@ -18,7 +18,8 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<% include ../partials/footer %>
|
<%- include('../partials/footer') %>
|
||||||
<% include ../partials/post_html_include %>
|
<%- include('../partials/post_html_include') %>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<% include ../partials/include %>
|
<%- include('../partials/include') %>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<% include ../partials/nav %>
|
<%- include('../partials/nav') %>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main role="main">
|
<main role="main">
|
||||||
|
@ -127,8 +127,8 @@
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<% include ../partials/footer %>
|
<%- include('../partials/footer') %>
|
||||||
<% include ../partials/post_html_include %>
|
<%- include('../partials/post_html_include') %>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue