updated format and section id

This commit is contained in:
2026-01-29 17:54:04 -07:00
parent f570424dcb
commit 994a3597bb
2 changed files with 74 additions and 56 deletions
+16 -12
View File
@@ -22,7 +22,7 @@ Highly motivated self starter that excels at finding organization in chaos. Used
<div id="experience"> <div id="experience">
<h3>Work Experience</h3> <h3>Work Experience</h3>
<table id="contact-table"> <table id="experience-table">
<tr> <tr>
<td style="text-align: left">IT, Data Analyst, Driver Trainer<br>Management Team</td> <td style="text-align: left">IT, Data Analyst, Driver Trainer<br>Management Team</td>
<td style="text-align: center"><b>JBL Logistics INC</b><br>Broomfield, CO, USA</td> <td style="text-align: center"><b>JBL Logistics INC</b><br>Broomfield, CO, USA</td>
@@ -30,12 +30,8 @@ Highly motivated self starter that excels at finding organization in chaos. Used
</tr> </tr>
</table> </table>
Transportation company servicing FedEX Ground Contract Transportation company servicing FedEX Ground Contract
Responsibilities included: Responsibilities included:
- Manage MDM for company iPads, technical support and training for iPads and JBL facing FedEX systems. - Manage MDM for company iPads, technical support and training for iPads and JBL facing FedEX systems.
@@ -44,22 +40,30 @@ Responsibilities included:
- Train new employees on business software and business objectives and requirements. - Train new employees on business software and business objectives and requirements.
- Do deliveries as required. - Do deliveries as required.
P R Delivery INC 2016 - 2019 <table id="experience-table">
<tr>
<td style="text-align: left">Owner</td>
<td style="text-align: center"><b>P R Delivery INC</b><br>Broomfield, CO, USA</td>
<td style="text-align: right"> 2016 - 2019</td>
</tr>
</table>
Tranportation company servicing FedEX Ground Contract Tranportation company servicing FedEX Ground Contract
Co-Owner
- After succesfully merging two companies to meet FedEX requirements, negotiated contract rates and grew company from 6 full time employees and \$500K annual revenue at time of merger to 12 full time employees and \$1.2M annual revenue at time of sale. - After succesfully merging two companies to meet FedEX requirements, negotiated contract rates and grew company from 6 full time employees and \$500K annual revenue at time of merger to 12 full time employees and \$1.2M annual revenue at time of sale.
- Developed a revenue analysis tool to project income and expenses using python and Google Sheets to aid in negotiating rates with FedEX. - Developed a revenue analysis tool to project income and expenses using python and Google Sheets to aid in negotiating rates with FedEX.
- Navigated company through an unexpected material change in routing method that included a deployment of iPads to all vehicles. The deployment consisted of enrolling devices in MDM, obtaining license to routing software, testing the deployment, and training of staff over a 2 week time frame. - Navigated company through an unexpected material change in routing method that included a deployment of iPads to all vehicles. The deployment consisted of enrolling devices in MDM, obtaining license to routing software, testing the deployment, and training of staff over a 2 week time frame.
- Sold the company in 2019. - Sold the company in 2019.
My Small Business Company INC 2002 - 2016 <table id="experience-table">
<tr>
<td style="text-align: left">Owner</td>
<td style="text-align: center"><b>My Small Business Company, INC</b><br>Westminster, CO, USA</td>
<td style="text-align: right">2002 - 2016</td>
</tr>
</table>
Transportation company servicing a FedEX Ground Contract Tranportation company servicing FedEX Ground Contract
Owner
- From my position as a dock worker I successfully obtained a delivery contract and started this company. - From my position as a dock worker I successfully obtained a delivery contract and started this company.
- Developed Payroll and financial analysis systems using python and Google Sheets. - Developed Payroll and financial analysis systems using python and Google Sheets.
+16 -2
View File
@@ -1,5 +1,6 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>{{ name }}</title> <title>{{ name }}</title>
@@ -8,44 +9,57 @@
size: letter; size: letter;
margin: 0.5in; margin: 0.5in;
} }
body { body {
font-family: Arial, sans-serif; font-family: Arial, sans-serif;
max-width: 100ch; /* 100 characters max width */ max-width: 100ch;
/* 100 characters max width */
margin: 0 auto; margin: 0 auto;
padding: 20px; padding: 20px;
line-height: 1.6; line-height: 1.6;
} }
h1 { h1 {
text-align: center; text-align: center;
margin-bottom: 20px; margin-bottom: 20px;
} }
table { table {
width: 100%; width: 100%;
table-layout: fixed;
border-collapse: collapse; border-collapse: collapse;
margin: 20px 0; margin: 20px 0;
} }
th, td {
th,
td {
text-align: left; text-align: left;
padding: 8px; padding: 8px;
border-bottom: 1px solid #ddd; border-bottom: 1px solid #ddd;
vertical-align: top; vertical-align: top;
} }
ul { ul {
padding-left: 20px; padding-left: 20px;
} }
li { li {
margin-bottom: 5px; margin-bottom: 5px;
} }
.section { .section {
margin-bottom: 20px; margin-bottom: 20px;
} }
.section h2 { .section h2 {
border-bottom: 2px solid #333; border-bottom: 2px solid #333;
padding-bottom: 5px; padding-bottom: 5px;
} }
</style> </style>
</head> </head>
<body> <body>
{{ content }} {{ content }}
</body> </body>
</html> </html>