typo and yaml-ify
parent
ec1ed7fb88
commit
558dcaecc3
|
|
@ -30,6 +30,7 @@ trap cleanup EXIT
|
||||||
rm -rf $outdir
|
rm -rf $outdir
|
||||||
mkdir -p $outdir/public
|
mkdir -p $outdir/public
|
||||||
cp homebrew/homebrew.html $outdir/public/index.html
|
cp homebrew/homebrew.html $outdir/public/index.html
|
||||||
|
cp homebrew/homebrew.pdf $outdir/public/BreeLaPointeResume.pdf
|
||||||
cp -r ./homebrew/fonts $outdir/public/
|
cp -r ./homebrew/fonts $outdir/public/
|
||||||
|
|
||||||
(
|
(
|
||||||
|
|
|
||||||
|
|
@ -31,10 +31,12 @@
|
||||||
<view style="display: flex; flex-direction: row; justify-content: space-between;">
|
<view style="display: flex; flex-direction: row; justify-content: space-between;">
|
||||||
<text style="color: rgb(129, 140, 248); font-weight: bold; font-size: 20pt;">Bree LaPointe
|
<text style="color: rgb(129, 140, 248); font-weight: bold; font-size: 20pt;">Bree LaPointe
|
||||||
</text>
|
</text>
|
||||||
<a href="./BreeLapointeResume.pdf" download class="no-print">
|
|
||||||
|
<a href="./BreeLaPointeResume.pdf" download class="no-print">
|
||||||
<text style="color: rgb(99, 99, 99); font-weight: normal; text-decoration: none;"><u>Download as PDF</u>
|
<text style="color: rgb(99, 99, 99); font-weight: normal; text-decoration: none;"><u>Download as PDF</u>
|
||||||
</text>
|
</text>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
<text style="color: rgb(23, 23, 23); font-weight: normal;">Senior Software Engineer
|
<text style="color: rgb(23, 23, 23); font-weight: normal;">Senior Software Engineer
|
||||||
</text>
|
</text>
|
||||||
|
|
|
||||||
|
|
@ -31,10 +31,12 @@
|
||||||
<view style="display: flex; flex-direction: row; justify-content: space-between;">
|
<view style="display: flex; flex-direction: row; justify-content: space-between;">
|
||||||
<text style="color: rgb(129, 140, 248); font-weight: bold; font-size: 20pt;">{{ range .resume.name }}{{ . }} {{ end }}
|
<text style="color: rgb(129, 140, 248); font-weight: bold; font-size: 20pt;">{{ range .resume.name }}{{ . }} {{ end }}
|
||||||
</text>
|
</text>
|
||||||
<a href="./BreeLapointeResume.pdf" download class="no-print">
|
{{ if .resume.pdf_file_name }}
|
||||||
|
<a href="./{{ .resume.pdf_file_name }}" download class="no-print">
|
||||||
<text style="color: rgb(99, 99, 99); font-weight: normal; text-decoration: none;"><u>Download as PDF</u>
|
<text style="color: rgb(99, 99, 99); font-weight: normal; text-decoration: none;"><u>Download as PDF</u>
|
||||||
</text>
|
</text>
|
||||||
</a>
|
</a>
|
||||||
|
{{ end }}
|
||||||
</view>
|
</view>
|
||||||
<text style="color: rgb(23, 23, 23); font-weight: normal;">{{ .resume.title }}
|
<text style="color: rgb(23, 23, 23); font-weight: normal;">{{ .resume.title }}
|
||||||
</text>
|
</text>
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
resume:
|
resume:
|
||||||
|
pdf_file_name: BreeLaPointeResume.pdf
|
||||||
name:
|
name:
|
||||||
- Bree
|
- Bree
|
||||||
- LaPointe
|
- LaPointe
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue