-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
72 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,12 @@ | |
<link rel="icon" type="image/png" href="{{ "/img/favicons/qgis-icon64.png" sizes="64x64" | prepend: site.baseurl }}"> | ||
<link rel="icon" type="image/png" href="{{ "/img/favicons/qgis-icon32.png" sizes="32x32" | prepend: site.baseurl }}"> | ||
|
||
|
||
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" integrity="sha256-kLaT2GOSpHechhsozzB+flnD+zUyjE2LlfWPgU04xyI=" crossorigin=""/> | ||
|
||
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" integrity="sha256-WBkoXOwTeyKclOHuWtc+i2uENFpDZ9YPdf5Hf+D7ewM=" crossorigin=""></script> | ||
|
||
|
||
<meta name="theme-color" content="#2b5797"> | ||
|
||
<link href="{{ "/css/main.css" | prepend: site.baseurl }}" rel="stylesheet"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
<!-- Begin Location Section --> | ||
|
||
<section id="location-map" class="location-map"> | ||
<!-- <div id="canvas-map" class="canvas-map"></div> --> | ||
<iframe id="canvas-map" class="canvas-map" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://www.openstreetmap.org/export/embed.html?bbox=20.741822719573978%2C42.21605138848048%2C20.762851238250736%2C42.22599893652783&layer=mapnik&marker={{ site.eventPlaceCoordinates | replace:' ','' }}"></iframe> | ||
<div class="content-wrapper"> | ||
<div class="col-lg-3 col-md-4 col-sm-6 col-md-offset-1 animated hiding location-description text-left" data-animation="fadeInLeft" data-delay="0"> | ||
<div class="row"> | ||
<div class="pull-left"> | ||
<h3>{{ site.locationBlockTitle }}</h3> | ||
<ul> | ||
{% if site.eventLocationName %}<li>{{ site.eventLocationName }}</li>{% endif %} | ||
<li>{{ site.eventStreetAddress }}, {{ site.eventAddressLocality }}, {{ site.eventAddressCountry }}</li> | ||
<!-- <li><a href="mailto:{{ site.email }}">{{ site.email }}</a></li> --> | ||
<!-- <li> | ||
{% assign startTime = site.eventStartTime | split: "T" %} | ||
<time>{{ startTime[1] }}</time> - | ||
{% assign endTime = site.eventEndTime | split: "T" %} | ||
<time>{{ endTime[1] }}</time> | ||
</li> --> | ||
</ul> | ||
</div> | ||
<a href="https://www.openstreetmap.org/directions?from=&to={{ site.eventPlaceCoordinates | replace:' ','' }}" class="pull-right"> | ||
<svg class="icon icon-direction" viewBox="0 0 32 32"> | ||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-direction"></use> | ||
</svg> | ||
</a> | ||
</div> | ||
<div class=""> | ||
<div id="map" class="canvas-map"></div> | ||
|
||
<div class="row" > | ||
<div class="col-sm-push-1 col-xs-push-7 animated hiding location-description text-left" data-animation="fadeInLeft" data-delay="0"> | ||
<h4>Faculty of Civil Engineering STU</h4> <ul> <li>Radlinskeho 11</li> <li>Bratislava</li> <li>Slovakia</li> </ul> <a href="https://www.openstreetmap.org/directions?from=&to=48.152044,17.115374" target="_blank"> Directions <svg class="icon-direction" viewBox="0 0 32 32"> <use xlink:href="/img/sprites/sprites.svg#icon-direction"></use> </svg> </a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
</section> | ||
|
||
<script> | ||
|
||
|
||
|
||
|
||
const map = L.map('map').setView([48.152044, 17.115374], 6); | ||
L.marker([48.152044, 17.115374]).addTo(map).bindPopup('<div class="location-map-popup"> <div class="logo logo-dark"></div> <p>Faculty of Civil Engineering STU</p> <ul> <li>Radlinskeho 11</li> <li>Bratislava</li> <li>Slovakia</li> </ul> <a href="https://www.openstreetmap.org/directions?from=&to=48.152044,17.115374" target="_blank"> Directions <svg class="icon-direction" viewBox="0 0 32 32"> <use xlink:href="/img/sprites/sprites.svg#icon-direction"></use> </svg> </a> </div> '); | ||
map.scrollWheelZoom.disable(); | ||
|
||
const tiles = L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', { maxZoom: 19, attribution: '© ' + '<a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>' }).addTo(map); | ||
|
||
</script> | ||
|
||
|
||
<!-- End Location Section --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ | |
|
||
{% include about.html %} | ||
|
||
{% include location-map.html %} | ||
|
||
{% include venue.html %} | ||
|
||
{% include partners.html %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.