wording
This commit is contained in:
parent
97ffce8678
commit
c2d98cf316
33
CLAUDE.md
Normal file
33
CLAUDE.md
Normal 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`.
|
||||
@ -7,15 +7,14 @@ Finance & Pricing Leader | Strategic Costing | Data & Analytics
|
||||
---
|
||||
|
||||
## Professional Summary
|
||||
|
||||
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.
|
||||
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.
|
||||
|
||||
---
|
||||
|
||||
## Professional Experience
|
||||
|
||||
### Growscape
|
||||
*Twinsburg, OH*
|
||||
*Twinsburg, OH | $250M Plastic Container Manufacturing | Platinum Equity Portfolio Company*
|
||||
|
||||
**Director of Financial Planning and Analysis** — Dec 2025 – Present
|
||||
|
||||
|
||||
4
pt.html
4
pt.html
@ -22,11 +22,11 @@
|
||||
<p>Finance & Pricing Leader | Strategic Costing | Data & Analytics</p>
|
||||
<hr />
|
||||
<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&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.</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, 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.</p>
|
||||
<hr />
|
||||
<h2 id="professional-experience">Professional Experience</h2>
|
||||
<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>
|
||||
<ul>
|
||||
<li>Own Platinum Operating Company Reporting Package for private equity stakeholders</li>
|
||||
|
||||
@ -149,6 +149,14 @@ code {
|
||||
}
|
||||
|
||||
/* --- Print Styles --- */
|
||||
@page {
|
||||
margin: 0.7in 0.4in 0.4in 0.4in;
|
||||
}
|
||||
|
||||
@page :first {
|
||||
margin-top: 0.4in;
|
||||
}
|
||||
|
||||
@media print {
|
||||
body {
|
||||
margin: 0;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user