www.meug.be Open in urlscan Pro
45.153.152.136  Public Scan

Submitted URL: http://www.meug.be/vintagespiritsfestival/
Effective URL: https://www.meug.be/vintagespiritsfestival/
Submission: On May 07 via api from US — Scanned from DE

Form analysis 1 forms found in the DOM

POST

<form enctype="multipart/form-data" data-mollie-forms="2.6.12" method="post" id="rfmp_12798" class=""><input type="hidden" id="mollie_forms_12798_nonce" name="mollie_forms_12798_nonce" value="31a93220cd"><input type="hidden" name="_wp_http_referer"
    value="/vintagespiritsfestival/"><input type="hidden" name="mollie-forms-post" value="12798">
  <p><label for="form_12798_field_0">Voornaam <span class="mollie-forms-required">*</span></label><br><input type="text" name="form_12798_field_0" id="form_12798_field_0" value="" label="Voornaam" class="" required="" style="width: 100%"></p>
  <p><label for="form_12798_field_1">Familienaam <span class="mollie-forms-required">*</span></label><br><input type="text" name="form_12798_field_1" id="form_12798_field_1" value="" label="Familienaam" class="" required="" style="width: 100%"></p>
  <p><label for="form_12798_field_2">E-mailadres <span class="mollie-forms-required">*</span></label><br><input type="email" name="form_12798_field_2" id="form_12798_field_2" value="" label="E-mailadres" class="" required="" style="width: 100%"></p>
  <p><label for="form_12798_field_3"></label><br></p>
  <table id="form_12798_field_3" label="" class="" required="">
    <tbody>
      <tr>
        <td style="min-width: 150px;">
          <input type="number" name="rfmp_priceoptions_12798_quantity[468]" class="rfmp_priceoptions_12798_quantity" data-frequency="once" data-freq="" data-price="75.00" data-vat="21"
            onchange="mollie_forms_recurring_methods_12798();mollie_forms_12798_totals();" min="0" max="223" value="0">
        </td>
        <td>
          <strong>TICKET VSF 2024 (incl. glass + 40 tokens)</strong><br>
          <small>€ 75,00</small>
        </td>
      </tr>
      <tr>
        <td style="min-width: 150px;">
          <input type="number" name="rfmp_priceoptions_12798_quantity[544]" class="rfmp_priceoptions_12798_quantity" data-frequency="once" data-freq="" data-price="60.00" data-vat="21"
            onchange="mollie_forms_recurring_methods_12798();mollie_forms_12798_totals();" min="0" max="23" value="0">
        </td>
        <td>
          <strong>MASTERCLASS 1 - 13.00h</strong><br>
          <small>€ 60,00</small>
        </td>
      </tr>
      <tr>
        <td style="min-width: 150px;">
          <input type="number" name="rfmp_priceoptions_12798_quantity[545]" class="rfmp_priceoptions_12798_quantity" data-frequency="once" data-freq="" data-price="60.00" data-vat="21"
            onchange="mollie_forms_recurring_methods_12798();mollie_forms_12798_totals();" min="0" max="29" value="0">
        </td>
        <td>
          <strong>MASTERCLASS 2 - 16.00h</strong><br>
          <small>€ 60,00</small>
        </td>
      </tr>
    </tbody>
  </table>
  <p id="rfmp_open_amount_12798" style="display:none;">
    <label>Bedrag <span style="color:red;">*</span><br>
      <span class="rfmp_currency_12798">€</span>
      <input type="number" step="any" value="" onchange="mollie_forms_12798_totals();" name="rfmp_amount_12798">
      <span id="rfmp_amount_freq_12798"></span>
    </label>
    <input type="hidden" name="rfmp_amount_required_12798" id="rfmp_open_amount_required_12798" value="0">
  </p>
  <script>
    window.onload = setTimeout(mollie_forms_12798_totals, 100);

    function mollie_forms_12798_totals() {
      var priceoption = document.getElementsByName("rfmp_priceoptions_12798");
      var quantities = document.getElementsByClassName("rfmp_priceoptions_12798_quantity");
      var subtotal = 0,
        total = 0,
        vat = 0;
      // Add shipping costs to total
      var shippingCosts = "";
      if (shippingCosts) {
        var shippingVat = 0.21 * parseFloat(shippingCosts);
        vat += shippingVat;
        total += parseFloat(shippingCosts);
        subtotal += parseFloat(shippingCosts);
      }
      if (0 in priceoption) {
        // single price option
        if (priceoption[0].tagName == "INPUT") {
          for (var i = 0, length = priceoption.length; i < length; i++) {
            if (priceoption[i].checked) {
              if (priceoption[i].dataset.pricetype == "open") {
                var openAmount = document.getElementsByName("rfmp_amount_12798");
                openAmount[0].setAttribute("min", priceoption[i].dataset.price);
                var optionPrice = parseFloat(openAmount[0].value);
              } else {
                var optionPrice = parseFloat(priceoption[i].dataset.price);
              }
              var optionVat = (parseInt(priceoption[i].dataset.vat) / 100) * optionPrice;
              vat += optionVat;
              total += optionPrice;
              subtotal += optionPrice;
              break;
            }
          }
        } else {
          if (priceoption[0].options[priceoption[0].selectedIndex].dataset.pricetype == "open") {
            var openAmount = document.getElementsByName("rfmp_amount_12798");
            openAmount[0].setAttribute("min", priceoption[0].options[priceoption[0].selectedIndex].dataset.price);
            var optionPrice = parseFloat(openAmount[0].value);
          } else {
            var optionPrice = parseFloat(priceoption[0].options[priceoption[0].selectedIndex].dataset.price);
          }
          var optionVat = (parseInt(priceoption[0].options[priceoption[0].selectedIndex].dataset.vat) / 100) * optionPrice;
          vat += optionVat;
          total += optionPrice;
          subtotal += optionPrice;
        }
      } else if (quantities) {
        // multiple price options with quantity
        for (var i = 0; i < quantities.length; i++) {
          var q = parseInt(quantities[i].value);
          var optionPrice = parseFloat(parseFloat(quantities[i].dataset.price) * q);
          var optionVat = (parseInt(quantities[i].dataset.vat) / 100) * optionPrice;
          vat += optionVat;
          total += optionPrice;
          subtotal += optionPrice;
        }
      }
      // payment method extra costs
      var methods = document.getElementsByName("rfmp_payment_method_12798");
      if (0 in methods) {
        if (methods[0].tagName == "INPUT") {
          // radio buttons
          for (var i = 0; i < methods.length; i++) {
            if (methods[i].checked) {
              var methodAmount = ((parseInt(methods[i].dataset.variable) / 100) * total) + parseFloat(methods[i].dataset.fixed);
              var methodVat = 0.21 * methodAmount;
              vat += methodVat;
              total += methodAmount;
              subtotal += methodAmount;
              break;
            }
          }
        } else {
          // dropdown
          var methodAmount = ((parseInt(methods[0].options[methods[0].selectedIndex].dataset.variable) / 100) * total) + parseFloat(methods[0].options[methods[0].selectedIndex].dataset.fixed);
          var methodVat = 0.21 * methodAmount;
          vat += methodVat;
          total += methodAmount;
          subtotal += methodAmount;
        }
      }
      // Display subtotal
      var subtotalValue = document.getElementById("rfmp_totals_12798_subtotal_value");
      if (subtotalValue) {
        var subtotalAmount = subtotal.toFixed(2) > 0 ? subtotal.toFixed(2) : "0.00";
        subtotalValue.innerHTML = subtotalAmount.replace(".", ",");
      }
      // Display total
      var totalValue = document.getElementById("rfmp_totals_12798_total_value");
      if (totalValue) {
        var totalAmount = total.toFixed(2) > 0 ? total.toFixed(2) : "0.00";
        totalValue.innerHTML = totalAmount.replace(".", ",");
      }
      // Display VAT
      var totalVatValue = document.getElementById("rfmp_totals_12798_vat_value");
      if (totalVatValue) {
        var totalVat = vat.toFixed(2) > 0 ? vat.toFixed(2) : "0.00";
        totalVatValue.innerHTML = totalVat.replace(".", ",");
      }
    }
  </script>
  <p></p>
  <p><label for="form_12798_field_4">Betaalmethode <span class="mollie-forms-required">*</span></label><br>
    <script>
      window.onload = setTimeout(mollie_forms_recurring_methods_12798, 100);

      function mollie_forms_recurring_methods_12798() {
        var priceoptions = document.getElementsByName("rfmp_priceoptions_12798");
        var freq = "";
        if (0 in priceoptions) {
          if (priceoptions[0].tagName == "INPUT") {
            for (var i = 0, length = priceoptions.length; i < length; i++) {
              if (priceoptions[i].checked) {
                var frequency = priceoptions[i].dataset.frequency;
                var pricetype = priceoptions[i].dataset.pricetype;
                freq = priceoptions[i].dataset.freq;
                break;
              }
            }
          } else {
            var frequency = priceoptions[0].options[priceoptions[0].selectedIndex].dataset.frequency;
            var pricetype = priceoptions[0].options[priceoptions[0].selectedIndex].dataset.pricetype;
            freq = priceoptions[0].options[priceoptions[0].selectedIndex].dataset.freq;
          }
        } else {
          var quantities = document.getElementsByClassName("rfmp_priceoptions_12798_quantity");
          var pricetype = "fixed";
          var frequency = "once";
          for (var i = 0, length = quantities.length; i < length; i++) {
            if (quantities[i].value > 0) {
              if (quantities[i].dataset.frequency != "once") {
                frequency = "recurring";
              }
            }
          }
        }
        var checkbox = document.getElementsByName("rfmp_checkbox_12798")[0];
        if (frequency == "once") {
          checkbox.removeAttribute("required");
        } else {
          checkbox.setAttribute("required", "required");
        }
        document.getElementById("rfmp_checkbox_12798").style.display = (frequency == "once" ? "none" : "block");
        document.getElementById("rfmp_checkbox_hidden_12798").value = (frequency == "once" ? 0 : 1);
        document.getElementById("rfmp_open_amount_12798").style.display = (pricetype == "open" ? "block" : "none");
        document.getElementById("rfmp_open_amount_required_12798").value = (pricetype == "open" ? 1 : 0);
        document.getElementById("rfmp_amount_freq_12798").innerHTML = freq;
        if (location.protocol === "https:" && window.ApplePaySession && window.ApplePaySession.canMakePayments()) {
          //
        } else if (document.getElementById("rfmp_pm_applepay_12798") !== null) {
          document.getElementById("rfmp_pm_applepay_12798").remove();
        }
        document.getElementById("rfmp_pm_ideal_12798").style.display = "block";
        document.getElementById("rfmp_pm_creditcard_12798").style.display = "block";
        document.getElementById("rfmp_pm_bancontact_12798").style.display = "block";
        document.getElementById("rfmp_pm_kbc_12798").style.display = "block";
        document.getElementById("rfmp_pm_belfius_12798").style.display = "block";
      }
    </script>
  </p>
  <ul id="form_12798_field_4" label="Betaalmethode" class="" required="" style="list-style-type:none;margin:0;">
    <li id="rfmp_pm_ideal_12798" style="display: block;">
      <label>
        <input type="radio" name="rfmp_payment_method_12798" value="ideal" data-fixed="0" data-variable="0" onchange="mollie_forms_12798_totals();" checked="">
        <img decoding="async" style="vertical-align:middle;display:inline-block;" src="https://www.mollie.com/external/icons/payment-methods/ideal.svg"> iDEAL </label>
    </li>
    <li id="rfmp_pm_creditcard_12798" style="display: block;">
      <label>
        <input type="radio" name="rfmp_payment_method_12798" value="creditcard" data-fixed="0" data-variable="0" onchange="mollie_forms_12798_totals();">
        <img decoding="async" style="vertical-align:middle;display:inline-block;" src="https://www.mollie.com/external/icons/payment-methods/creditcard.svg"> Kaart </label>
    </li>
    <li id="rfmp_pm_bancontact_12798" style="display: block;">
      <label>
        <input type="radio" name="rfmp_payment_method_12798" value="bancontact" data-fixed="0" data-variable="0" onchange="mollie_forms_12798_totals();">
        <img decoding="async" style="vertical-align:middle;display:inline-block;" src="https://www.mollie.com/external/icons/payment-methods/bancontact.svg"> Bancontact </label>
    </li>
    <li id="rfmp_pm_kbc_12798" style="display: block;">
      <label>
        <input type="radio" name="rfmp_payment_method_12798" value="kbc" data-fixed="0" data-variable="0" onchange="mollie_forms_12798_totals();">
        <img decoding="async" style="vertical-align:middle;display:inline-block;" src="https://www.mollie.com/external/icons/payment-methods/kbc.svg"> KBC/CBC-Betaalknop </label>
    </li>
    <li id="rfmp_pm_belfius_12798" style="display: block;">
      <label>
        <input type="radio" name="rfmp_payment_method_12798" value="belfius" data-fixed="0" data-variable="0" onchange="mollie_forms_12798_totals();">
        <img decoding="async" style="vertical-align:middle;display:inline-block;" src="https://www.mollie.com/external/icons/payment-methods/belfius.svg"> Belfius Pay Button </label>
    </li>
  </ul><input type="hidden" id="rfmp_checkbox_hidden_12798" name="rfmp_checkbox_hidden_12798" value="0"><br><label id="rfmp_checkbox_12798" style="display:none;">
    <input type="checkbox" name="rfmp_checkbox_12798" value="1">Hierbij geef ik toestemming om het terugkerende bedrag periodiek van mijn rekening te incasseren. </label>
  <p></p>
  <p></p>
  <p></p>
  <p><br><button type="submit" name="form_12798_field_7" id="form_12798_field_7" value="" label="Bestellen!" class="" required="">Bestellen!</button></p><input type="hidden" id="apbct_visible_fields_0" name="apbct_visible_fields"
    value="eyIwIjp7InZpc2libGVfZmllbGRzIjoiZm9ybV8xMjc5OF9maWVsZF8wIGZvcm1fMTI3OThfZmllbGRfMSBmb3JtXzEyNzk4X2ZpZWxkXzIgcmZtcF9wcmljZW9wdGlvbnNfMTI3OThfcXVhbnRpdHlbNDY4XSByZm1wX3ByaWNlb3B0aW9uc18xMjc5OF9xdWFudGl0eVs1NDRdIHJmbXBfcHJpY2VvcHRpb25zXzEyNzk4X3F1YW50aXR5WzU0NV0gcmZtcF9hbW91bnRfMTI3OTgiLCJ2aXNpYmxlX2ZpZWxkc19jb3VudCI6NywiaW52aXNpYmxlX2ZpZWxkcyI6Im1vbGxpZV9mb3Jtc18xMjc5OF9ub25jZSBfd3BfaHR0cF9yZWZlcmVyIG1vbGxpZS1mb3Jtcy1wb3N0IHJmbXBfYW1vdW50X3JlcXVpcmVkXzEyNzk4IHJmbXBfY2hlY2tib3hfaGlkZGVuXzEyNzk4IiwiaW52aXNpYmxlX2ZpZWxkc19jb3VudCI6NX19">
</form>

Text Content

Voor mensen met smaak



 * BEDRIJFSTASTINGS
 * OPEN TASTINGS
 * VINTAGE SPIRITS FESTIVAL
 * LIQUID LEUVEN
 * MAGAZINE
 * CONTACT
    * OVER ONS

 * MEUGCHANDISING

 * BEDRIJFSTASTINGS
 * OPEN TASTINGS
 * VINTAGE SPIRITS FESTIVAL
 * LIQUID LEUVEN
 * MAGAZINE
 * CONTACT
   * OVER ONS
 * MEUGCHANDISING


OLD, RARE, EXCLUSIVE AND VINTAGE SPIRITS


TOGETHER ON A NEW TASTING FESTIVAL IN LEUVEN.



Saturday 15th June 2024 : 14-19u




WHAT IS VINTAGE SPIRITS FESTIVAL?

A spirits festival dedicated to the old, rare, exclusive, special, unique
spirits of this world. A gathering of likeminded people who prefer open bottles
over closed ones and enjoy sharing drams to remember with friends. A place to
create liquid memories.

Vintage Spirits Festival focuses on quality, not quantity, and so we invite a
very select group of exhibitors and their bottles to the festival.

The location is the beautiful heritage site of  De Hoorn. It is a former brewery
and offers the perfect atmosphere to let your drams taste even better.

Each visitor is welcomed as a friend. With your ticket, you will get a tasting
glass and a good starting amount of tokens (40 tokens, value of 50 euro). Sample
bottles are available too, if you want to take home some of the gems on offer.

We will limit the number of exhibitors to a maximum of 12, to ensure a relaxed
atmosphere. We will also limit the number of tickets sold, for the same reason:
we want a nice and relaxed atmosphere among spirits-lovers!


TWO SPECIAL MASTERCLASSES

Each exhibitor offers up one bottle that means something to them, and these
bottles will be opened for masterclasses during the festival. These will be held
in the special tasting room in the Skybox at the seventh floor, with a fantastic
view of Leuven. You can join a masterclass at 13.00h and 16.00h!(Yes, the first
masterclass starts 1h before the festival opens, so you will get early access).
And yes, you do need a ticket for the festival to be able to participate in a
masterclass. Line-ups will be slowly revealed leading up to the festival, you
can find them below (click on the bottle for more info from the people who
selected it).

Signing up for one of these can be done through the ticketing system. Each
masterclass is limited to 30 people max!

 



MASTERCLASS 1 – 13.00H

LINE-UP (RANDOM ORDER)

1. Laphroaig Cairdeas 2009 12yo  WB8660 (FILM) (JAMES PITHIE)

2. Tomatin DECADES – WB23361 (FILM) (BERT BRUYNEEL)

3. Highland Park The Geert Bero Family Reserve 13.5yo  – WB136010   (FILM)
(GEERT BERO)

4. ?

5. ?

6. ?

 

MASTERCLASS 2 – 16.00H

LINE-UP (RANDOM ORDER)

1. Cognac Famille Cabanne Lot 19.10 bottle 33/109 (IVO DRABS)

2. Ben Nevis 13yo (1990-2004) 61.6% – WB1630 (PHILIPPE GOSMAND Spirit Paradise)

3. Murray McDavid Uitvlught Port Mourant 1992 – 13yo / Laphroaig  + Sauternes
Cask (RENE VAN HOVEN)

4. Lagavulin Special Release 2006 – 12yo CS 57.5% – WB875 – (THE GREEN MAN –
FILM)

5. Cognac Laurichesse 1975  – #16 Le Roi de L’Automne – 50.4% (Malternative
Belgium  x The Whisky Jury) – (MALTERNATIVE BELGIUM – FILM)

6. ?





ONE UNIQUE EXPERIENCE THE DAY BEFORE THE FESTIVAL

For those of you who want to start on Friday already, we have something truly
special. In collaboration with Whisky Warehouse (Ellen and Eric Vermeire) we
offer a once in a lifetime masterclass of 6 closed distilleries bottlings,
hosted by Eric Vermeire and Stephen Rankin, 4th generation family member of
Gordon & MacPhail and Director of Prestige at G&M.

The line-up:

Connoisseurs Choice Upper Littlemill 31yo (1991-2023), Connoisseurs Choice Upper
Glen Esk 38yo (1984-2023), G&M Private Collection Linlithgow 40yo (1982-2023),
G&M Private Collection Caperdonich 43yo (1979-2023), G1M Private Collection
Banff 46yo (1976-2023) and G&M Private Collection Port Ellen 42yo (1981-2023).
Price for this tasting: 800€.

To join this exclusive masterclass, get in touch with Eric or Ellen at
Whiskywarehouse (mail Ellen or mail Eric)


TICKETS FOR THE FESTIVAL

Voornaam *


Familienaam *


E-mailadres *





TICKET VSF 2024 (incl. glass + 40 tokens)
€ 75,00 MASTERCLASS 1 - 13.00h
€ 60,00 MASTERCLASS 2 - 16.00h
€ 60,00

Bedrag *
€



Betaalmethode *


 * iDEAL
 * Kaart
 * Bancontact
 * KBC/CBC-Betaalknop
 * Belfius Pay Button


Hierbij geef ik toestemming om het terugkerende bedrag periodiek van mijn
rekening te incasseren.








Bestellen!




EXHIBITORS FOR VINTAGE SPIRITS FESTIVAL 2024

FULL LINE-UP BELOW!







THE WHISKY HOUSE

Locatie: Affligem

Bekend van: 2 generaties whiskypassie

Te ontdekken: schatkist aan oude flessen

Must Know: Geert is een van de godfathers van de whiskywereld

Meer info >


WINE4YOU

Locatie: Bonheiden

Bekend van: exclusieve bottelingen cognac e.a.

Te ontdekken: eigenzinnige selectie

Must know: Ivo kiest zeer bewust wat hij onder eigen naam op de markt lanceert
en dat is altijd spot-on

Meer info >


DUTCH WHISKY CONNECTION

Locatie: Nederland
Bekend van: festivals over de hele wereld
Te ontdekken: eigen unieke bottelingen en een uitgebreide verzameling old & rare
Must know: op Michiels webshop vind je enkel dingen die hij zelf lekker vindt!
Meer info >

 

 




BERT BRUYNEEL (ASTA MORRIS)

Locatie: Ingooigem

Bekend van: one of the original Malt Maniacs

Te ontdekken: verrassing!

Must Know: Bert duikt speciaal voor het festival in zijn archieven en
persoonlijke collectie

Meer info >


RENE VAN HOVEN - RUM

Locatie: Nederland

Bekend van: vintage rum collection

Te ontdekken: unieke oude rumflessen

Must Know: René is een van gerenommeerde rumverzamelaar en -experts

 

 




WHISKY WAREHOUSE

Locatie: Ravels
Bekend van: G&M, Benromach,…
Te ontdekken: nieuwe en oude exclusieve flessen
Must know: op vrijdag 14/6 organiseren we op dezelfde locatie een
superexclusieve tasting met G&M!
Meer info >




BILLY'S WHISKY BARREL

Locatie: Bredene

Bekend van: Malts of Scotland



Te ontdekken: altijd wat speciaals op deze tafel

Must Know: Doet vaak mee aan internationale festivals

Meer info >

 

 


THE GREEN MAN

Locatie: Oostende

Bekend van: gezelligste whiskybar van het land

Te ontdekken: vraag aan Michiel wat je zeker moet geproefd hebben!

Must Know: Michiel is een grote Islay-fan

Meer info >

 


SPIRIT PARADISE (FR)

Locatie: Villepreux

Bekend van: tastings, festivals en eigen bottelingen

Te ontdekken: unieke flessen

Must Know: Philippe is al meer dan 30 jaar wild van whisky!

Meer info >

 

 

 




MALTERNATIVE BELGIUM

Locatie: Hasselt
Bekend van: eigen cognac-bottelingen
Te ontdekken: cognac van meer dan 100 jaar oud, uit 1895
Must know: hebben een cognac-belevingswinkel in Hasselt!
Meer info >


JAMES PITHIE

Locatie: Keerbergen

Bekend van: eigen import met James & Whisky

Te ontdekken: Port ellen 1979? Hanyu? oude blends? – keus genoeg!

Must Know: Nog een echte old school whiskyliefhebber, een plezier om mee te
praten.

Meer info >

 

 


OLDIES & GOLDIES WHISKY

Locatie: Oostende

Bekend van: true old school collectie

Te ontdekken: eigenlijk alles op de tafel

Must Know: Geert was een van de bezielers van het Lindores-festival, dat de
inspiratie was voor dit festival!

Meer info >




PRAKTISCH




WHERE?

Den Hoorn

Sluisstraat 79

3000 Leuven




WHEN?

Saturday 15th June 2024
From 14h
Pouring until 19u
Doors close 19.30h




HOW TO GET THERE

From STATION NMBS Leuven

 * 19min walk
 * bus 600 towards stop ENGELS PLEIN

Car (please use a designated driver!)

 * Parking close by (3min walk):  VAARTKOM Leuven 




























Algemene voorwaarden
Privacybeleid

© Meug

MENU
Bedrijfstastings
Open tastings
Tastingfestival
Magazine
Over ons
Contact

CONTACTEER ONS
Smaakbureau Meug
Kerkstraat 19 | 2060 Antwerpen

T +32 (0) 479 32 02 66
M office@meug.be

BTW BE 0675 505 327
RPR Antwerpen




Meldingen