coming together nicely

This commit is contained in:
Charles N Wyble 2024-12-09 12:15:58 -06:00
parent abf8dc39f2
commit 6578edd230
6 changed files with 47 additions and 11 deletions

View File

@ -0,0 +1 @@
Working directory for the pipeline. Don't use.

View File

@ -0,0 +1 @@
Working directory for the pipeline. Don't use.

View File

@ -3,5 +3,5 @@ header-left: "\\hspace{1cm}"
header-center: "\\leftmark"
header-right: "Page \\thepage"
footer-left: "{{CandidateName}}"
urlcolor: blue
page-background: "D:/tsys/@ReachableCEO/ExternalVendorCode/pandoc-latex-template/examples/page-background/backgrounds/background5.pdf"
urlcolor: {{URLCOLOR}}
page-background: "{{PAGEBACKGROUND}}"

View File

@ -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}}"

View File

@ -0,0 +1,6 @@
CandidateName
CandidateLogo
CandidateTagline
ResumeSourceCode
URLCOLOR
PAGEBACKGROUND

28
build/build-all.sh Normal file
View 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