summaryrefslogtreecommitdiff
path: root/download/build.js
diff options
context:
space:
mode:
Diffstat (limited to 'download/build.js')
-rw-r--r--download/build.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/download/build.js b/download/build.js
index 7e18973..baef284 100644
--- a/download/build.js
+++ b/download/build.js
@@ -4,7 +4,8 @@ const fs = require('fs');
const childProcess = require('child_process');
const resumeHtml = fs.readFileSync('../resume.html').toString();
-const resumeCss = fs.readFileSync('./resume_dl.css').toString();
+const resumeCss = fs.readFileSync('../resume.css').toString();
+const resumeDlCss = fs.readFileSync('./resume_dl.css').toString();
function getRidofTagsBetween(start, end, html) {
let si = newHtml.indexOf(start);
@@ -21,6 +22,7 @@ const newHeader = `
<script>window.onload = function () { twemoji.parse(document.body);}</script>
<style>
${resumeCss}
+${resumeDlCss}
</style>
</head>
`