# Neo Brutalist Job Posting

> A bold, retro-web inspired job posting template for Instagram. Features a neo-brutalist OS window with stacked tip cards, vibrant yellow accent cards, cursor decorations, and playful typography. Perfect for tech companies, startups, and creative teams hiring on social media.

This is a [Bannx](https://bannx.com) template. Render any of its **pages** to an image (PNG, SVG, WebP) or PDF through the Bannx Render API, and customize the output by passing **tweaks** (variable overrides).

## Template

- Template ID: `job-listing`
- Category: career
- Pages: 1
- Open in browser: https://bannx.com/templates/job-listing

## How to use

1. Pick a **page** below and note its **page ID**.
2. Call the Render API with that page ID. Override text, colors, and other values via the `tweaks` map (keys are the variable names listed below).
3. Authenticate with an API key (create one under **Settings → Space → Developers**) using the `Authorization: Bearer <token>` header. GET requests for this template require a token (or the space GET render secret `gt`).

Full docs: https://bannx.com/docs/rendering · https://bannx.com/docs/variables

## Quick demo (no API key)

AI agents and curious humans can render this **public** template with tweaks without an account. Mint a short-lived **demo token** (IP-throttled, ~1h TTL, max 5 per hour per IP) and pass it as `?demo=...` (or `Authorization: Bearer <token>`):

```bash
# 1. Mint a demo token (no auth required)
curl -s -X POST https://bannx.com/api/demo-token
# → { "token": "demo_…", "expiresAt": …, "quota": { … } }

# 2. Render with the token (public templates only)
curl -L "https://bannx.com/api/render/page-tipstyle-job?format=png&output=binary&demo=demo_…" --output demo.png
```

Demo tokens only work on public templates and don't consume any space's credits. For production usage, create an API key under **Settings → Space → Developers** instead.

## Variables

| Name | Type | Default | Description |
|------|------|---------|-------------|
| `company` | object | `{"name":"Pixel Lab Co.","logoUrl":"","brandColor":"#F7C325"}` |  |
| `job` | object | `{"title":"Senior Product Designer","department":"Design Team","location":"Remote • Worldwide","type":"Full-time","salary":"$90,000 – $130,000"}` |  |
| `cta` | object | `{"label":"Apply Now","url":"careers.yourcompany.com"}` |  |
| `candidate` | object | `{"name":"Edward Newgate","photoUrl":""}` |  |

## Pages

### Job Posting – Tip Style

- Page ID: `page-tipstyle-job`
- Size: 1080×1080
- Variables: `company`, `cta`, `job`

## Example: render "Job Posting – Tip Style"

POST (recommended):

```bash
curl -X POST "https://bannx.com/api/render" -H "Content-Type: application/json" -H "Authorization: Bearer YOUR_API_KEY" --data "{\"templateId\":\"job-listing\",\"draft\":false,\"format\":\"png\",\"output\":\"binary\",\"pageId\":\"page-tipstyle-job\"}" -o render.png
```

GET (embed in an `<img>` / quick link):

```bash
curl -H "Authorization: Bearer YOUR_API_KEY" "https://bannx.com/api/render/page-tipstyle-job?format=png&output=binary&templateId=job-listing" -o render.png
```
