Event cards in this template use a spotlight section pattern with alternating image-text layouts. These sections are perfect for showcasing different wedding events, venues, or important information.
The template uses spotlight sections within an alternating wrapper:
<section id="two" class="wrapper alt style2"> <section class="spotlight"> <div class="image"><img src="images/the_couple.jpg" alt="" /></div> <div class="content"> <h2>The Couple</h2> <h3>Take the quiz !</h3> <p> We could tell you our story ... or we could see how well you know it. </p> <ul class="actions"> <a href="pages/the_couple.html" class="button primary fit">Challenge Accepted !</a> </ul> </div> </section></section>
The wrapper alt style2 class creates the alternating left-right pattern. Each spotlight automatically switches sides as you add more sections.
Here’s the full pattern used on the home page to display multiple events:
<section id="two" class="wrapper alt style2"> <!-- Event 1: The Couple --> <section class="spotlight"> <div class="image"><img src="images/the_couple.jpg" alt="" /></div> <div class="content"> <h2>The Couple</h2> <h3>Take the quiz !</h3> <p> We could tell you our story ... or we could see how well you know it. Find some inside secrets and facts you probably have never heard about. <ul class="actions"> <a href="pages/the_couple.html" class="button primary fit">Challenge Accepted !</a> </ul> </p> </div> </section> <!-- Event 2: Schedule --> <section class="spotlight"> <div class="image"><img src="images/schedule.jpg" alt="" /></div> <div class="content"> <h2>Schedule</h2> <h3>Here's what we have in store</h3> <p> Find the detailed list of events, location inside the venue and hints on the dress code. <ul class="actions"> <a href="pages/schedule.html" class="button primary fit">Let's have some fun!</a> </ul> </p> </div> </section> <!-- Event 3: Encomium --> <section class="spotlight"> <div class="image"><img src="images/encomium.jpg" alt="" /></div> <div class="content"> <h2>Encomium</h2> <h3>An ode to memories that last forever</h3> <p> The greatest storytellers, heroes, source of unconditional love and the keepers of traditions. <ul class="actions"> <a href="pages/encomium.html" class="button primary fit">A trip down memory lane !</a> </ul> </p> </div> </section></section>
You can add multiple call-to-action buttons in a single spotlight:
<section class="spotlight"> <div class="image"><img src="images/travel_and_accomadation.jpg" alt="" /></div> <div class="content"> <h2>Travel and Accommodation</h2> <h3>One stop shop to make your attendance a breeze</h3> <p> Are you traveling from out of station and need help booking a room? Want tips on best route to the venue? Fear not, we have got you covered. </p> <ul class="actions"> <a href="pages/travel_and_accommodation.html#Accommodation Form" class="button primary fit">Take me to the form !</a> <a href="pages/travel_and_accommodation.html#Tips" class="button">Give me tips !</a> </ul> </div></section>
The first button uses button primary fit for emphasis, while the second uses just button for a secondary action. Both use the fit class to span the full width.
For displaying multiple items in a grid (like vendors or thank-you section), use the features list:
<section id="three" class="wrapper style3 special"> <div class="inner"> <header class="major"> <h2>A heartfelt thanks to everyone involved</h2> <p>This is a token of appreciation and gratitude.</p> </header> <ul class="features"> <li class="icon fa-building"> <h3><a href="http://www.thenesara.com/">Nesara Center For Culture</a></h3> <p> Set in an idyllic locale on the outskirts of Bangalore, Nesara is stunningly landscaped. </p> </li> <li class="icon solid fa-camera-retro"> <h3><a href="https://pixelenastudio.com/">Pixelena Studio</a></h3> <p> Specializing in wedding photography, they capture the very essence of your wedding day. </p> </li> <li class="icon solid fa-video"> <h3><a href="https://pixelstream.in/">Pixel Stream</a></h3> <p> One of the leading production houses incorporating passionate Photographers & Videographers. </p> </li> <li class="icon solid fa-utensils"> <h3><a href="#">Rao Caterers</a></h3> <p> Best known for their traditional South Indian delicacies and customer satisfaction. </p> </li> </ul> </div></section>
The features grid automatically arranges items in rows based on screen size - 2 columns on tablets, 3-4 on desktop.