facts
This commit is contained in:
parent
476f91f7cf
commit
be09ed2f30
3 changed files with 190 additions and 18 deletions
|
@ -85,5 +85,32 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="card mt-3">
|
||||
<div class="card-header bg-rainbow">
|
||||
<h5 class="card-title">✨ Fabulous Drink Fun Facts ✨</h5>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
{% set funFacts = [
|
||||
"The world's first gay bar, Café Lafitte in Exile, opened in New Orleans in 1933 and still serves fabulous cocktails today!",
|
||||
"The colorful rainbow cocktail was created to celebrate Pride and contains six different colored liqueurs representing the Pride flag!",
|
||||
"Drag queens in the 1950s would often meet at underground bars and order 'lavender cocktails' as a secret code!",
|
||||
"The Cosmopolitan cocktail gained massive popularity thanks to 'Sex and the City' and became an LGBTQ+ nightlife staple!",
|
||||
"The Stonewall Inn, site of the 1969 riots that sparked the modern LGBTQ+ rights movement, was originally a gay bar!",
|
||||
"The term 'toast' comes from ancient Rome where they would literally put toast in wine to improve its flavor - how's that for quirky?",
|
||||
"Champagne glasses were modeled after Marie Antoinette's breasts, according to fabulous but dubious historical legend!",
|
||||
"Tequila doesn't contain a worm - that's mezcal, darling! And it's actually a moth larva, not a worm!",
|
||||
"The world's most expensive cocktail, 'Diamonds Are Forever,' costs $22,600 and contains a real diamond at the bottom!",
|
||||
"Absinthe was banned for nearly 100 years because people thought it caused hallucinations and 'moral degeneration' - how dramatic!",
|
||||
"Ancient Egyptians believed that drinking wine made from red grapes was drinking the blood of those who had fought against the gods - fierce!",
|
||||
"The Moscow Mule cocktail was invented to help sell vodka to Americans who thought it was too boring - now it's served in those gorgeous copper mugs!",
|
||||
"The Bloody Mary was created as a hangover cure and named after Queen Mary I of England, who was quite the drama queen!"
|
||||
] %}
|
||||
|
||||
{% set randomIndex = random(0, funFacts|length - 1) %}
|
||||
<p class="mb-0 fun-fact">{{ funFacts[randomIndex] }}</p>
|
||||
<p class="text-end mt-3"><small>💅 Slay all day while you sip away! 🏳️🌈</small></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue