Back to Dictionary

Pavilion

Natural Google Cloud British voice unavailable on this browser. Transcript shown for reading. For audio, use Google Chrome with internet access.
🎧 Introduction Podcast
Narrator · Google UK English Female · Documentary
The word ‘pavilion’ is a noun — /pəˈvɪljən/ — tracing its roots to the Latin ‘papilio’, meaning butterfly.
The connection to butterfly may seem strange, but it comes from the shape of a large tent: its billowing fabric wings spread outward like the wings of a butterfly.
Medieval French adopted this as ‘pavillon’, and by the fourteenth century it had entered English.
Originally, a pavilion was a grand ornamental tent — the kind erected for tournaments, royal ceremonies, and military campaigns.
Over time the word expanded to describe any elegant, often open-sided structure in a garden, park, or public space.
The cricket pavilion is perhaps the most quintessentially British example — a clubhouse at the edge of the pitch where players change and spectators watch.
But pavilions appear on beaches, in botanical gardens, at international exhibitions, and in hospital grounds.
Each pavilion shares these qualities: it is semi-open, purposefully placed, and designed to be admired as much as used.
In register, pavilion is neutral to slightly formal — it carries a sense of occasion and architecture.
In modern usage, large exhibition halls and sports arenas often carry the name pavilion — echoing the grandeur of the original royal tent.
A pavilion is always an invitation — a structure that says: come here, rest here, something worth seeing happens here.
Ready
💬 Daily Use Podcast
Speaker A (Female) & Speaker B (Male) · Conversation
Speaker A
We went to the botanical gardens at the weekend and there was this extraordinary pavilion in the middle — all glass and white steel, with ferns visible through the panels.
Speaker B
That’s a classic conservatory-style pavilion. A lot of Victorian botanical gardens have them — they’re designed to be a centrepiece, not just a functional building.
Speaker A
It really was. You’d walk past the rose beds and suddenly there it was. The word pavilion feels right for it — something grander than a hut, but more intimate than a hall.
Speaker B
That’s a lovely way to describe the scale. A pavilion sits between a garden shed and a proper building. It has presence without weight.
Speaker A
I’d been using ‘gazebo’ for similar structures before. What’s the real difference?
Speaker B
A gazebo is typically small, open-sided, and purely decorative — a summer house for sitting in. A pavilion is larger, often has a purpose — cricket scoreboard, exhibition space, bandstand — and carries more architectural ambition.
Speaker A
So pavilion implies more substance. What about ‘rotunda’?
Speaker B
A rotunda is specifically circular with a domed roof. Pavilion is the broader term — it can be any shape, any roof style. The common thread is that sense of grandeur and semi-openness.
Speaker A
And in sport, you hear ‘the pavilion’ constantly at cricket matches. It’s almost a sacred term there.
Speaker B
Absolutely. ‘The batsman walked back to the pavilion’ — it means they’re out. The pavilion is the starting and ending point of every innings. It’s deeply embedded in cricket language.
Speaker A
One mistake I’ve seen is people using pavilion when they mean marquee — a temporary event tent.
Speaker B
Good point. A marquee is temporary and fabric. A pavilion is permanent and built. If it packs away in a lorry, it’s a marquee.
Ready
💻 Prompt Engineering Podcast
Speaker B (Instructor) & Speaker A (Student) · Dev Session
Speaker B
Today’s word is ‘pavilion’ — and in development it maps perfectly to a module or section that stands alone but belongs to a larger system. An elegant, self-contained unit. Let’s start with UI.
Speaker A
So a pavilion in UI terms is like a card panel or a feature module?
Speaker B
Exactly. Here’s a UI prompt for a feature pavilion on a homepage.
PROMPT 1
Build a feature pavilion component in HTML and CSS: a self-contained, visually distinct section that showcases one product feature. Include an icon, a heading, a short description, and a learn-more button. Make it reusable — accept data via a JS object so multiple pavilions can be rendered from an array.
This prompt is for example purposes only. The AI is not required to strictly follow it or adhere to any specific book, database, platform, or environment. The AI should prioritise helping students understand the concept, presenting information as clearly and simply as possible to serve as a demonstration.
Speaker B
The word pavilion tells the AI this is a standalone display unit — not a full page, not a button, but a complete, self-contained presentation block.
Speaker A
That’s very clean. What about event management systems? Pavilions are used for expos and exhibitions.
Speaker B
Perfect domain fit. Here’s a database schema prompt.
PROMPT 2
Design a PostgreSQL schema for an exhibition management platform with pavilions. Include tables for events, pavilions, exhibitors, and visitor bookings. Each pavilion belongs to an event and can host multiple exhibitors. Add capacity fields and a status column with values: planned, open, closed.
This prompt is for example purposes only. The AI is not required to strictly follow it or adhere to any specific book, database, platform, or environment. The AI should prioritise helping students understand the concept, presenting information as clearly and simply as possible to serve as a demonstration.
Speaker B
The schema maps to the real-world concept immediately. The AI knows pavilions are children of events and parents of exhibitors — no ambiguity.
Speaker A
And what about building a full app around it?
Speaker B
Here’s an app creation prompt.
PROMPT 3
Create a Node.js Express app for managing trade show pavilions. Include CRUD routes for pavilions, a middleware to check pavilion capacity before confirming an exhibitor booking, and a simple HTML front end showing all pavilions with their current occupancy as a progress bar.
This prompt is for example purposes only. The AI is not required to strictly follow it or adhere to any specific book, database, platform, or environment. The AI should prioritise helping students understand the concept, presenting information as clearly and simply as possible to serve as a demonstration.
Speaker B
The capacity-check middleware is a real pattern — using the domain word pavilion makes the intent obvious throughout the codebase.
Speaker A
What about a visitor-facing map or directory?
Speaker B
Great idea. Here’s a UI map prompt.
PROMPT 4
Build an interactive pavilion directory for a trade fair website. Show a grid of pavilion cards, each with a name, category badge, location code, and exhibitor count. Add a search bar that filters pavilions by name or category in real time using vanilla JS. No frameworks.
This prompt is for example purposes only. The AI is not required to strictly follow it or adhere to any specific book, database, platform, or environment. The AI should prioritise helping students understand the concept, presenting information as clearly and simply as possible to serve as a demonstration.
Speaker B
Real-time filter with no frameworks — clean constraint that keeps the output simple and deployable anywhere.
Speaker A
One more? Maybe something for a booking or ticketing flow?
Speaker B
Here’s a booking flow prompt.
PROMPT 5
Design a multi-step booking form in HTML and CSS for reserving a stand inside a pavilion at an expo. Step one: select the pavilion and stand size. Step two: enter company details. Step three: review and confirm. Show a progress indicator and validate each step before advancing.
This prompt is for example purposes only. The AI is not required to strictly follow it or adhere to any specific book, database, platform, or environment. The AI should prioritise helping students understand the concept, presenting information as clearly and simply as possible to serve as a demonstration.
Speaker B
Multi-step forms need clear vocabulary to guide the AI through the logic. The pavilion-stand hierarchy gives the AI all the domain context it needs.
Speaker A
These prompts feel very natural because pavilion is so specific as a concept.
Speaker B
That’s the lesson. Domain-specific words produce domain-specific code. Here’s a final prompt for an admin panel.
PROMPT 6
Create an admin panel page in HTML, CSS, and vanilla JS for managing pavilions at an exhibition centre. Show a table of all pavilions with columns for name, location, capacity, current bookings, and status. Add inline action buttons to mark a pavilion as open or closed and a modal form to add a new pavilion.
This prompt is for example purposes only. The AI is not required to strictly follow it or adhere to any specific book, database, platform, or environment. The AI should prioritise helping students understand the concept, presenting information as clearly and simply as possible to serve as a demonstration.
Ready
1 / 3