from pathlib import Path import base64 img_path = Path("/mnt/data/ccair_httpss.mj.runRo6ORKFF_Cg_create_an_editorial_hair_campa_52533376-1017-4d0c-9112-087cc02b225b_0.png") img_data = "data:image/png;base64," + base64.b64encode(img_path.read_bytes()).decode("utf-8") html_template = r''' Collective Model Academy
Welcome back, Model
THE
MODEL
BLUEPRINT
CHALLENGE

Master the modeling essentials. Think like a pro. Book like a pro.

An interactive academy dashboard to test your knowledge, make smart decisions, and build your modeling career the right way.

Your Progress
0%
LEVEL
1
POINTS
0
BADGES
0
CHOOSE YOUR CATEGORY
THE TOTAL PACKAGE

Headshots, digitals, comp cards & portfolio

12 QUESTIONS
PREPARING FOR YOUR SHOOTS

Wardrobe, beauty, etiquette & more

12 QUESTIONS
BOOKING & BIZ BASICS

Rates, usage, contracts & negotiations

12 QUESTIONS
REPRESENTATION & CAREER PATH

Agents, agencies & building your brand

12 QUESTIONS
ON SET & PROFESSIONALISM

Set etiquette, posing, direction & more

12 QUESTIONS
ADVANCED SCENARIOS

Real world situations for serious models

12 QUESTIONS
LEVEL
1
Business Basics

Test your knowledge on rates, contracts, usage, and client scenarios.

Next Unlock

Advanced Scenarios
High-level challenges for real industry situations.

Top Models
  1. Jade Brown2,950
  2. Maya L.2,720
  3. Aria K.2,480
VIEW FULL LEADERBOARD →
PLAY CHALLENGE

Model Blueprint Assessment

Close-call, advanced questions. Passing score: 80%. Certificate unlocks when passed.


GLOSSARY
Digitals

Clean, natural photos used to show your current look, shape, and proportions.

Usage

Where and how the client is allowed to use your image or video.

Buyout

A one-time fee for agreed image usage rights.

TFP

Trade for photos: creative team exchanges time for portfolio images.

Comp Card

Your model business card with images, stats, and contact details.

Call Time

The time you must be present, ready, and checked in for a booking.

RESOURCES

Model Academy Resources

Add links here to your Model Blueprint PDF, digitals guide, comp card template, model bag checklist, and booking policies.

''' html = html_template.replace("__IMG_DATA__", img_data) path = Path("/mnt/data/collective_model_academy_squarespace_embed.html") path.write_text(html, encoding="utf-8") path.as_posix()