coming together nicely
This commit is contained in:
parent
abf8dc39f2
commit
6578edd230
1
build-output/ignore-this-dir
Normal file
1
build-output/ignore-this-dir
Normal file
@ -0,0 +1 @@
|
||||
Working directory for the pipeline. Don't use.
|
1
build-temp/ignore-this-dir
Normal file
1
build-temp/ignore-this-dir
Normal file
@ -0,0 +1 @@
|
||||
Working directory for the pipeline. Don't use.
|
@ -1,7 +1,7 @@
|
||||
title: "{{Candidate Name}} Resume"
|
||||
title: "{{CandidateName}} Resume"
|
||||
header-left: "\\hspace{1cm}"
|
||||
header-center: "\\leftmark"
|
||||
header-right: "Page \\thepage"
|
||||
footer-left: "{{Candidate Name}}"
|
||||
urlcolor: blue
|
||||
page-background: "D:/tsys/@ReachableCEO/ExternalVendorCode/pandoc-latex-template/examples/page-background/backgrounds/background5.pdf"
|
||||
footer-left: "{{CandidateName}}"
|
||||
urlcolor: {{URLCOLOR}}
|
||||
page-background: "{{PAGEBACKGROUND}}"
|
@ -1,12 +1,12 @@
|
||||
title: "Charles N Wyble Resume"
|
||||
title: "{{CandidateName}} Resume"
|
||||
titlepage: true
|
||||
titlepage-logo: "D:/tsys/@ReachableCEO/ReachableCEO.png"
|
||||
titlepage-logo: "{{CandidateLogo}}"
|
||||
date: \today
|
||||
header-left: "\\hspace{1cm}"
|
||||
header-center: "\\leftmark"
|
||||
header-right: "Page \\thepage"
|
||||
footer-left: "Charles N Wyble"
|
||||
footer-center: "Tenacity. Velocity. Focus."
|
||||
footer-right: "[Source code for this resume](https://git.knownelement.com/reachableceo/ReachableCEOResume) "
|
||||
urlcolor: blue
|
||||
page-background: "D:/tsys/@ReachableCEO/ExternalVendorCode/pandoc-latex-template/examples/page-background/backgrounds/background5.pdf"
|
||||
footer-left: "{{CandidateName}}"
|
||||
footer-center: "{{CandidateTagline}}"
|
||||
footer-right: "[Source code for this resume]({{ResumeSourceCode}}"
|
||||
urlcolor: {{URLCOLOR}}
|
||||
page-background: "{{PAGEBACKGROUND}}"
|
6
build/ResumeSpecificVariables.env
Normal file
6
build/ResumeSpecificVariables.env
Normal file
@ -0,0 +1,6 @@
|
||||
CandidateName
|
||||
CandidateLogo
|
||||
CandidateTagline
|
||||
ResumeSourceCode
|
||||
URLCOLOR
|
||||
PAGEBACKGROUND
|
28
build/build-all.sh
Normal file
28
build/build-all.sh
Normal file
@ -0,0 +1,28 @@
|
||||
#!/bin/bash
|
||||
|
||||
|
||||
#Read in candidate specific variables
|
||||
|
||||
source ./ResumeVarialbes.env
|
||||
|
||||
#############################################
|
||||
# Setup globals
|
||||
#############################################
|
||||
export BUILD_TEMP_DIR="../build-temp"
|
||||
export BUILD_OUTPUT_DIR="../build-output"
|
||||
export BuildYamlJobBoard="$BUILD_TEMP_DIR/BuildJobBoard.yml"
|
||||
export BuildYamlClientSubmission="$BUILD_TEMP_DIR/BuildClientSubmision.yml"
|
||||
|
||||
export CandidateName=$CandidateName
|
||||
export CandidateLogo=$CandidateLogo
|
||||
export CandidateTagline=$CandidateTagline
|
||||
export ResumeSourceCode=$ResumeSourceCode
|
||||
export URLCOLOR=$URLCOLOR
|
||||
export PAGEBACKGROUND=$PAGEBACKGROUND
|
||||
|
||||
# Expand the variables into the rendered YAML files for use by the build process
|
||||
|
||||
./mo MarkdownResume-BuildTemplateInput-ClientSubmission.yml > $BuildYamlClientSubmission
|
||||
./mo MarkdownResume-BuildTemplateInput-JobBoard.yml > $BuildYamlJobBoard
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user