pipeline
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1,3 @@
|
||||
local/build-temp/*
|
||||
RenderedAssets/profile-consulting.reachableceo.com/*.pdf
|
||||
.vscode/sftp.json
|
BIN
RenderedAssets/CharlesNWyble-ConsultantProfile.pdf
Normal file
BIN
RenderedAssets/CharlesNWyble-ConsultantProfile.pdf
Normal file
Binary file not shown.
44
RenderedAssets/index.html
Normal file
44
RenderedAssets/index.html
Normal file
@@ -0,0 +1,44 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="Resume links for Charles Wyble">
|
||||
<meta name="author" content="Charles Wyble">
|
||||
<title>Charles N Wyble Consulting Profile Page</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Welcome to the Charles N Wyble Consulting Profile Page</h1>
|
||||
</header>
|
||||
|
||||
<section class="resume-links">
|
||||
<h2>Consulting profile documents for Charles N Wyble </h2>
|
||||
<ul>
|
||||
<li><a href="./CharlesNWyble-ConsultantProfile.pdf" target="_blank" class="resume-link">Charles N Wyble Consultant Profile (PDF)</a></li>
|
||||
<li><a href="./CharlesNWyble-ConsultantHistory.pdf" target="_blank" class="resume-link">Charles N Wyble Engagement History (PDF)</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section class="resume-links">
|
||||
<h2>Social media site profiles</h2>
|
||||
<ul>
|
||||
<li><a href="https://www.linkedin.com/in/charles-wyble-412007337" target="_blank" class="resume-link">My linkedin profile</a></li>
|
||||
<li><a href="https://www.github.com/reachableceo" target="_blank" class="resume-link">My GitHub profile</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section class="resume-links">
|
||||
<h2>Source code for this site</h2>
|
||||
<ul>
|
||||
<li><a href="https://git.knownelement.com/ReachableCEO/profile-consulting.reachableceo.com" target="_blank" class="resume-link">Git repository for this site front end content.</a></li>
|
||||
<li><a href="https://git.knownelement.com/ReachableCEO/ReachableCEO-Profile-consulting" target="_blank" class="resume-link">Git repository for this site backend content.</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
<p>© 2025 ReachableCEO Enterprises LLC. All rights reserved.</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
Submodule RenderedAssets/profile-consulting.reachableceo.com deleted from 99c1f56a89
74
RenderedAssets/styles.css
Normal file
74
RenderedAssets/styles.css
Normal file
@@ -0,0 +1,74 @@
|
||||
/* Reset some default browser styles */
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
line-height: 1.6;
|
||||
background-color: #f4f4f4;
|
||||
color: #333;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
/* Header Styling */
|
||||
header {
|
||||
background-color: #4CAF50;
|
||||
color: white;
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
header h1 {
|
||||
font-size: 2.5em;
|
||||
}
|
||||
|
||||
header p {
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
/* Section for resume links */
|
||||
.resume-links {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.resume-links h2 {
|
||||
font-size: 2em;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.resume-links ul {
|
||||
list-style: none;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.resume-links li {
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.resume-link {
|
||||
text-decoration: none;
|
||||
font-size: 1.1em;
|
||||
color: #4CAF50;
|
||||
border: 2px solid #4CAF50;
|
||||
padding: 10px 15px;
|
||||
border-radius: 5px;
|
||||
display: inline-block;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.resume-link:hover {
|
||||
background-color: #4CAF50;
|
||||
color: white;
|
||||
}
|
||||
|
||||
/* Footer Styling */
|
||||
footer {
|
||||
margin-top: 50px;
|
||||
text-align: center;
|
||||
font-size: 1em;
|
||||
color: #777;
|
||||
}
|
@@ -1,7 +1,8 @@
|
||||
#############################################################################
|
||||
#SET THIS OR NOTHING WILL WORK
|
||||
export PipelineClientWorkingDir="D:/tsys/ReachableCEOPublic/MarketingMaterials/inputs/ReachableCEO-Profile-Consulting/local"
|
||||
#SET THIS OR NOTHING WILL WORK
|
||||
#SET THESE TWO VARIABLE CORRECTLY OR NOTHING WILL WORK
|
||||
export PipelineClientWorkingDir="~/ReachableCEO/ReachableCEO-OutreachMaterial/ReachableCEO-Profile-Consulting/local"
|
||||
export BUILD_OUTPUT_DIR="~/ReachableCEO/ReachableCEO-OutreachMaterial/ReachableCEO-Profile-Consulting/RenderedAssets/"
|
||||
#SET THESE TWO VARIABLE CORRECTLY OR NOTHING WILL WORK
|
||||
#############################################################################
|
||||
|
||||
###################################################
|
||||
@@ -23,14 +24,14 @@ export ConsultantEmail="reachableceo@reachableceo.com"
|
||||
export ConsultantOneLineSummary="Senior (**Staff level**) **System Engineer/SRE/Architect** with extensive Linux/Windows/Networking/Cyber security background and experience
|
||||
"
|
||||
export ConsultantLinkedin="https://www.linkedin.com/in/charles-wyble-412007337"
|
||||
export ConsultantGithub="https://www.github.com/reachableceo"
|
||||
export ConsultantGithub="https://git.knownelement.com/reachableceo"
|
||||
export ConsultantTagline="Candor. Consistency. Completion."
|
||||
|
||||
########################
|
||||
# Formatting options
|
||||
########################
|
||||
|
||||
export ConsultantLogo="D:/tsys/ReachableCEOPublic/ReachableCEO.png"
|
||||
export ConsultantLogo="~/localuser/ReachableCEO/ReachableCEOOutreachMaterial/ReachableCEO.png"
|
||||
export SourceCode="https://git.knownelement.com/reachableceo/ReachableCEO-Profile-Consulting"
|
||||
export URLCOLOR="blue"
|
||||
export PAGEBACKGROUND="$PipelineClientWorkingDir/build/background3.pdf"
|
||||
@@ -65,7 +66,6 @@ export ConsultantHourlyRateBespoke="245.00"
|
||||
|
||||
export PROFILE_FILE_NAME="$(echo $ConsultantName|sed 's/ //g')"
|
||||
|
||||
export BUILD_OUTPUT_DIR="D:/tsys/ReachableCEOPublic/MarketingMaterials/outputs/profile-consulting.reachableceo.com/ConsultantProfile"
|
||||
|
||||
export ConsultantInfoSheetMarkdownOutputFile="$BUILD_OUTPUT_DIR/$PROFILE_FILE_NAME-ConsultantInfoSheet.md"
|
||||
export ConsultantInfoSheetPDFOutputFile="$BUILD_OUTPUT_DIR/$PROFILE_FILE_NAME-ConsultantInfoSheet.pdf"
|
||||
|
0
local/build/build-consulting-profile.sh
Normal file → Executable file
0
local/build/build-consulting-profile.sh
Normal file → Executable file
Reference in New Issue
Block a user