This commit is contained in:
Paul Trowbridge 2026-02-25 21:08:32 -05:00
parent 97ffce8678
commit c2d98cf316
4 changed files with 45 additions and 5 deletions

33
CLAUDE.md Normal file
View File

@ -0,0 +1,33 @@
# CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
## Build
The resume is authored in Markdown and compiled to HTML with pandoc:
```bash
bash build.sh
```
Which runs:
```bash
pandoc paul_trowbridge.md -o pt.html --css styles.css --standalone
```
`pt.html` is the output — do not edit it directly. All content changes go in `paul_trowbridge.md`.
## Architecture
This is a single-page resume with three source files:
- **`paul_trowbridge.md`** — source of truth for all resume content. Uses YAML front matter for the `<title>` tag. Section structure: Professional Summary → Professional Experience (reverse chronological) → Education → Infrastructure & Tools.
- **`styles.css`** — custom stylesheet. CSS variables at `:root` control the color palette (blues + grays). Sections use `h1`/`h2`/`h3` hierarchy generated by pandoc. Includes print media query (`@media print`) tuned for clean PDF output.
- **`pt.html`** — pandoc-generated output. The stylesheet is embedded as a `<link>` tag; pandoc injects its own minimal inline styles alongside it.
The `css/` directory contains older stylesheets (markdown.css, highlight.css, etc.) from a prior pandoc approach — these are no longer used. `flavor.css` is also unused.
## Workflow
Edit `paul_trowbridge.md`, then run `bash build.sh` to regenerate `pt.html`. The HTML renders in a browser; print or export to PDF directly from the browser using the print styles in `styles.css`.

View File

@ -7,15 +7,14 @@ Finance & Pricing Leader | Strategic Costing | Data & Analytics
--- ---
## Professional Summary ## Professional Summary
I Partner with executives and business functions to model and forecast the business - surfacing opportunities and giving leaders a clear line of sight between their decisions and results. With 18 years in manufacturing, I've built this infrastructure from scratch at every level: people, pricing functions, cost environments, consolidation frameworks, and analytics platforms that became the primary financial data source for the organizations I served.
I build financial models of the business — integrated structures that connect pricing, cost, and operational drivers to financial outcomes across the P&L. My work gives executives and business unit leaders a clear line of sight between their decisions and results. Over 15 years in manufacturing, I've built this infrastructure from scratch at every level: pricing functions, cost environments, consolidation frameworks, and analytics platforms that became the primary financial data source for the organizations I served.
--- ---
## Professional Experience ## Professional Experience
### Growscape ### Growscape
*Twinsburg, OH* *Twinsburg, OH | $250M Plastic Container Manufacturing | Platinum Equity Portfolio Company*
**Director of Financial Planning and Analysis** — Dec 2025 Present **Director of Financial Planning and Analysis** — Dec 2025 Present

View File

@ -22,11 +22,11 @@
<p>Finance &amp; Pricing Leader | Strategic Costing | Data &amp; Analytics</p> <p>Finance &amp; Pricing Leader | Strategic Costing | Data &amp; Analytics</p>
<hr /> <hr />
<h2 id="professional-summary">Professional Summary</h2> <h2 id="professional-summary">Professional Summary</h2>
<p>I build financial models of the business — integrated structures that connect pricing, cost, and operational drivers to financial outcomes across the P&amp;L. My work gives executives and business unit leaders a clear line of sight between their decisions and results. Over 15 years in manufacturing, Ive built this infrastructure from scratch at every level: pricing functions, cost environments, consolidation frameworks, and analytics platforms that became the primary financial data source for the organizations I served.</p> <p>I Partner with executives and business functions to model and forecast the business - surfacing opportunities and giving leaders a clear line of sight between their decisions and results. With 18 years in manufacturing, Ive built this infrastructure from scratch at every level: people, pricing functions, cost environments, consolidation frameworks, and analytics platforms that became the primary financial data source for the organizations I served.</p>
<hr /> <hr />
<h2 id="professional-experience">Professional Experience</h2> <h2 id="professional-experience">Professional Experience</h2>
<h3 id="growscape">Growscape</h3> <h3 id="growscape">Growscape</h3>
<p><em>Twinsburg, OH</em></p> <p><em>Twinsburg, OH | $250M Plastics Manufacturing | Platinum Equity Portfolio Company</em></p>
<p><strong>Director of Financial Planning and Analysis</strong> — Dec 2025 Present</p> <p><strong>Director of Financial Planning and Analysis</strong> — Dec 2025 Present</p>
<ul> <ul>
<li>Own Platinum Operating Company Reporting Package for private equity stakeholders</li> <li>Own Platinum Operating Company Reporting Package for private equity stakeholders</li>

View File

@ -149,6 +149,14 @@ code {
} }
/* --- Print Styles --- */ /* --- Print Styles --- */
@page {
margin: 0.7in 0.4in 0.4in 0.4in;
}
@page :first {
margin-top: 0.4in;
}
@media print { @media print {
body { body {
margin: 0; margin: 0;