This repository has been archived by the owner on Oct 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlocation.html
63 lines (57 loc) · 2.93 KB
/
location.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
layout: page
title: Location
menuTitle: Location
permalink: /location/
order: 3
---
<section class="section-location-about">
<div class="section-container section-container--divided">
<div class="section__side section__side__text-left">
<h2 class="section__title">Budapest - A Central European Gem</h2>
<p>
Last year, Budapest was voted the host for EuRuKo 2017. Budapest is the capital of Hungary, and also the largest city in the country. It's located right in the centre of Central Europe, Carpathian Basin.
<br>
Budapest is cited as one of the most beautiful cities in Europe, ranked as "the world's second best city" by Condé Nast Traveler and "Europe's 7th most idyllic place to live" by Forbes.
</p>
<p>
The city is bisected by the River Danube and several bridges connects the hilly Buda district with flat Pest. Suburban Buda and its historic castle district offer medieval streets and houses, museums, caves, Turkish baths and Roman ruins. The dynamic Pest side boasts the largest parliament building in Europe, riverside promenades, flea markets, bookstores, antique stores and café houses.
</p>
<p>
Enjoy the historical wonders during daytime then dive deep into the nightlife and discover various Ruin pubs, Roof deck pubs and clubs in the heart of the city.
</p>
</div>
<div class="section__side section__side__image"></div>
</div>
</section>
<section class="section-location-map">
<div class="section-container section-container--divided">
<div class="section__side section__side__map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d4275.3246778703915!2d19.086643307043154!3d47.50885896913161!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x36022c5da92be3bf!2zRMO8cmVyIFJlbmRlenbDqW55a8O2enBvbnQ!5e0!3m2!1sen!2shu!4v1487604428202"
width="100%" height="100%" frameborder="0"></iframe>
</div>
<div class="section__side section__side__text-right">
<h2 class="section__title">Dürer Kert</h2>
<p>
The Dürer Rendezvényház is an event venue found in the center of Budapest, near the Városliget. An attractive old park surrounds the buildings that are located on a 36 thousand square metre area.
</p>
<p>
Located in the heart of the city it creates a great opportunity to discover the city highlights in the area like Heroes Square, Széchenyi bath or Vajdahunyad Castle.
</p>
</div>
</div>
</section>
<section class="section-location-image">
</section>
<script>
var mapContainer = document.querySelector('.section__side__map')
var mapIframe = mapContainer.querySelector('iframe')
mapContainer.addEventListener('click', enableMapEvents)
mapContainer.addEventListener('mouseleave', disableMapEvents)
function enableMapEvents() {
mapIframe.classList.add('active')
}
function disableMapEvents() {
mapIframe.classList.remove('active')
}
</script>