Added PDF download

This commit is contained in:
John Shaver 2018-10-22 14:29:49 -07:00
父節點 360b2e4475
當前提交 e9e3b597c5
共有 4 個檔案被更改,包括 17 行新增1 行删除

二進制
John-Shaver-Resume-2018.pdf Normal file

未顯示二進位檔案。

查看文件

@ -30,7 +30,7 @@
</svg>
<section id="main">
<header id="title">
<h1>John Shaver</h1>
<h1>John Shaver</h1><a class="download-button no-print" href="John-Shaver-Resume-2018.pdf"><i class="fas fa-file-download"></i></a>
<span class="subtitle">Full-Stack Engineer and Devops Enthusiast</span>
</header>
<section class="main-block">

8
render-pdf.sh Executable file
查看文件

@ -0,0 +1,8 @@
#! /bin/sh
npx http-server &
sleep 6;
chromium --headless --disable-gpu --run-all-compositor-stages-before-draw --print-to-pdf="./John-Shaver-Resume-2018.pdf" http://localhost:8080/ --virtual-time-budget=10000;
kill %1;
exit;

查看文件

@ -443,6 +443,7 @@ svg.ts-logo {
.no-print {
display:none;
}
}
@ -459,4 +460,11 @@ svg.ts-logo {
.source-link a {
color: #DDD;
}
a.download-button {
position: absolute;
right: 7rem;
top: 0.75em;
font-size: 1.5rem;
}