Init
This commit is contained in:
16
themes/educenter-hugo/static/.htaccess
Executable file
16
themes/educenter-hugo/static/.htaccess
Executable file
@ -0,0 +1,16 @@
|
||||
<IfModule mod_deflate.c>
|
||||
AddOutputFilterByType DEFLATE text/plain
|
||||
AddOutputFilterByType DEFLATE text/html
|
||||
AddOutputFilterByType DEFLATE text/xml
|
||||
AddOutputFilterByType DEFLATE text/css
|
||||
AddOutputFilterByType DEFLATE application/xml
|
||||
AddOutputFilterByType DEFLATE application/xhtml+xml
|
||||
AddOutputFilterByType DEFLATE application/rss+xml
|
||||
AddOutputFilterByType DEFLATE application/javascript
|
||||
AddOutputFilterByType DEFLATE application/x-javascript
|
||||
AddOutputFilterByType DEFLATE image/jpg
|
||||
AddOutputFilterByType DEFLATE image/png
|
||||
AddOutputFilterByType DEFLATE image/gif
|
||||
AddOutputFilterByType DEFLATE image/jpeg
|
||||
AddOutputFilterByType DEFLATE image/svg+xml
|
||||
</IfModule>
|
BIN
themes/educenter-hugo/static/fonts/Futura-Bold.woff
Executable file
BIN
themes/educenter-hugo/static/fonts/Futura-Bold.woff
Executable file
Binary file not shown.
3623
themes/educenter-hugo/static/plugins/animate/animate.css
vendored
Executable file
3623
themes/educenter-hugo/static/plugins/animate/animate.css
vendored
Executable file
File diff suppressed because it is too large
Load Diff
7
themes/educenter-hugo/static/plugins/bootstrap/bootstrap.min.css
vendored
Executable file
7
themes/educenter-hugo/static/plugins/bootstrap/bootstrap.min.css
vendored
Executable file
File diff suppressed because one or more lines are too long
7
themes/educenter-hugo/static/plugins/bootstrap/bootstrap.min.js
vendored
Executable file
7
themes/educenter-hugo/static/plugins/bootstrap/bootstrap.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
1
themes/educenter-hugo/static/plugins/filterizr/jquery.filterizr.min.js
vendored
Executable file
1
themes/educenter-hugo/static/plugins/filterizr/jquery.filterizr.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
140
themes/educenter-hugo/static/plugins/google-map/gmap.js
Executable file
140
themes/educenter-hugo/static/plugins/google-map/gmap.js
Executable file
@ -0,0 +1,140 @@
|
||||
window.marker = null;
|
||||
|
||||
function initialize() {
|
||||
var map;
|
||||
var latitude = $('#map_canvas').attr('data-latitude');
|
||||
var longitude = $('#map_canvas').attr('data-longitude');
|
||||
var mapMarker = $('#map_canvas').attr('data-marker');
|
||||
var mapMarkerName = $('#map_canvas').attr('data-marker-name');
|
||||
var nottingham = new google.maps.LatLng(latitude, longitude);
|
||||
var style = [{
|
||||
"featureType": "landscape",
|
||||
"stylers": [{
|
||||
"hue": "#FFAD00"
|
||||
},
|
||||
{
|
||||
"saturation": 50.2
|
||||
},
|
||||
{
|
||||
"lightness": -34.8
|
||||
},
|
||||
{
|
||||
"gamma": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "road.highway",
|
||||
"stylers": [{
|
||||
"hue": "#FFAD00"
|
||||
},
|
||||
{
|
||||
"saturation": -19.8
|
||||
},
|
||||
{
|
||||
"lightness": -1.8
|
||||
},
|
||||
{
|
||||
"gamma": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "road.arterial",
|
||||
"stylers": [{
|
||||
"hue": "#FFAD00"
|
||||
},
|
||||
{
|
||||
"saturation": 72.4
|
||||
},
|
||||
{
|
||||
"lightness": -32.6
|
||||
},
|
||||
{
|
||||
"gamma": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "road.local",
|
||||
"stylers": [{
|
||||
"hue": "#FFAD00"
|
||||
},
|
||||
{
|
||||
"saturation": 74.4
|
||||
},
|
||||
{
|
||||
"lightness": -18
|
||||
},
|
||||
{
|
||||
"gamma": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "water",
|
||||
"stylers": [{
|
||||
"hue": "#00FFA6"
|
||||
},
|
||||
{
|
||||
"saturation": -63.2
|
||||
},
|
||||
{
|
||||
"lightness": 38
|
||||
},
|
||||
{
|
||||
"gamma": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "poi",
|
||||
"stylers": [{
|
||||
"hue": "#FFC300"
|
||||
},
|
||||
{
|
||||
"saturation": 54.2
|
||||
},
|
||||
{
|
||||
"lightness": -14.4
|
||||
},
|
||||
{
|
||||
"gamma": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
var mapOptions = {
|
||||
center: nottingham,
|
||||
mapTypeId: google.maps.MapTypeId.ROADMAP,
|
||||
backgroundColor: "#000",
|
||||
zoom: 15,
|
||||
panControl: false,
|
||||
zoomControl: true,
|
||||
mapTypeControl: false,
|
||||
scaleControl: false,
|
||||
streetViewControl: false,
|
||||
overviewMapControl: false,
|
||||
zoomControlOptions: {
|
||||
style: google.maps.ZoomControlStyle.LARGE
|
||||
}
|
||||
}
|
||||
map = new google.maps.Map(document.getElementById('map_canvas'), mapOptions);
|
||||
var mapType = new google.maps.StyledMapType(style, {
|
||||
name: "Grayscale"
|
||||
});
|
||||
map.mapTypes.set('grey', mapType);
|
||||
map.setMapTypeId('grey');
|
||||
var marker_image = mapMarker;
|
||||
var pinIcon = new google.maps.MarkerImage(marker_image, null, null, null, new google.maps.Size(37, 55));
|
||||
marker = new google.maps.Marker({
|
||||
position: nottingham,
|
||||
map: map,
|
||||
icon: pinIcon,
|
||||
title: mapMarkerName
|
||||
});
|
||||
}
|
||||
var map = document.getElementById('map_canvas');
|
||||
if (map != null) {
|
||||
google.maps.event.addDomListener(window, 'load', initialize);
|
||||
}
|
2
themes/educenter-hugo/static/plugins/jQuery/jquery.min.js
vendored
Executable file
2
themes/educenter-hugo/static/plugins/jQuery/jquery.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
BIN
themes/educenter-hugo/static/plugins/slick/ajax-loader.gif
Executable file
BIN
themes/educenter-hugo/static/plugins/slick/ajax-loader.gif
Executable file
Binary file not shown.
After Width: | Height: | Size: 4.1 KiB |
BIN
themes/educenter-hugo/static/plugins/slick/fonts/slick.eot
Executable file
BIN
themes/educenter-hugo/static/plugins/slick/fonts/slick.eot
Executable file
Binary file not shown.
14
themes/educenter-hugo/static/plugins/slick/fonts/slick.svg
Executable file
14
themes/educenter-hugo/static/plugins/slick/fonts/slick.svg
Executable file
@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>Generated by Fontastic.me</metadata>
|
||||
<defs>
|
||||
<font id="slick" horiz-adv-x="512">
|
||||
<font-face font-family="slick" units-per-em="512" ascent="480" descent="-32"/>
|
||||
<missing-glyph horiz-adv-x="512" />
|
||||
|
||||
<glyph unicode="→" d="M241 113l130 130c4 4 6 8 6 13 0 5-2 9-6 13l-130 130c-3 3-7 5-12 5-5 0-10-2-13-5l-29-30c-4-3-6-7-6-12 0-5 2-10 6-13l87-88-87-88c-4-3-6-8-6-13 0-5 2-9 6-12l29-30c3-3 8-5 13-5 5 0 9 2 12 5z m234 143c0-40-9-77-29-110-20-34-46-60-80-80-33-20-70-29-110-29-40 0-77 9-110 29-34 20-60 46-80 80-20 33-29 70-29 110 0 40 9 77 29 110 20 34 46 60 80 80 33 20 70 29 110 29 40 0 77-9 110-29 34-20 60-46 80-80 20-33 29-70 29-110z"/>
|
||||
<glyph unicode="←" d="M296 113l29 30c4 3 6 7 6 12 0 5-2 10-6 13l-87 88 87 88c4 3 6 8 6 13 0 5-2 9-6 12l-29 30c-3 3-8 5-13 5-5 0-9-2-12-5l-130-130c-4-4-6-8-6-13 0-5 2-9 6-13l130-130c3-3 7-5 12-5 5 0 10 2 13 5z m179 143c0-40-9-77-29-110-20-34-46-60-80-80-33-20-70-29-110-29-40 0-77 9-110 29-34 20-60 46-80 80-20 33-29 70-29 110 0 40 9 77 29 110 20 34 46 60 80 80 33 20 70 29 110 29 40 0 77-9 110-29 34-20 60-46 80-80 20-33 29-70 29-110z"/>
|
||||
<glyph unicode="•" d="M475 256c0-40-9-77-29-110-20-34-46-60-80-80-33-20-70-29-110-29-40 0-77 9-110 29-34 20-60 46-80 80-20 33-29 70-29 110 0 40 9 77 29 110 20 34 46 60 80 80 33 20 70 29 110 29 40 0 77-9 110-29 34-20 60-46 80-80 20-33 29-70 29-110z"/>
|
||||
<glyph unicode="a" d="M475 439l0-128c0-5-1-9-5-13-4-4-8-5-13-5l-128 0c-8 0-13 3-17 11-3 7-2 14 4 20l40 39c-28 26-62 39-100 39-20 0-39-4-57-11-18-8-33-18-46-32-14-13-24-28-32-46-7-18-11-37-11-57 0-20 4-39 11-57 8-18 18-33 32-46 13-14 28-24 46-32 18-7 37-11 57-11 23 0 44 5 64 15 20 9 38 23 51 42 2 1 4 3 7 3 3 0 5-1 7-3l39-39c2-2 3-3 3-6 0-2-1-4-2-6-21-25-46-45-76-59-29-14-60-20-93-20-30 0-58 5-85 17-27 12-51 27-70 47-20 19-35 43-47 70-12 27-17 55-17 85 0 30 5 58 17 85 12 27 27 51 47 70 19 20 43 35 70 47 27 12 55 17 85 17 28 0 55-5 81-15 26-11 50-26 70-45l37 37c6 6 12 7 20 4 8-4 11-9 11-17z"/>
|
||||
</font></defs></svg>
|
After Width: | Height: | Size: 2.1 KiB |
BIN
themes/educenter-hugo/static/plugins/slick/fonts/slick.ttf
Executable file
BIN
themes/educenter-hugo/static/plugins/slick/fonts/slick.ttf
Executable file
Binary file not shown.
BIN
themes/educenter-hugo/static/plugins/slick/fonts/slick.woff
Executable file
BIN
themes/educenter-hugo/static/plugins/slick/fonts/slick.woff
Executable file
Binary file not shown.
1
themes/educenter-hugo/static/plugins/slick/slick.css
Executable file
1
themes/educenter-hugo/static/plugins/slick/slick.css
Executable file
@ -0,0 +1 @@
|
||||
.slick-list,.slick-slider,.slick-track{position:relative;display:block}.slick-loading .slick-slide,.slick-loading .slick-track{visibility:hidden}.slick-slider{box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{top:0;left:0;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}
|
1
themes/educenter-hugo/static/plugins/slick/slick.min.js
vendored
Executable file
1
themes/educenter-hugo/static/plugins/slick/slick.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
BIN
themes/educenter-hugo/static/plugins/themify-icons/fonts/themify.eot
Executable file
BIN
themes/educenter-hugo/static/plugins/themify-icons/fonts/themify.eot
Executable file
Binary file not shown.
362
themes/educenter-hugo/static/plugins/themify-icons/fonts/themify.svg
Executable file
362
themes/educenter-hugo/static/plugins/themify-icons/fonts/themify.svg
Executable file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 229 KiB |
BIN
themes/educenter-hugo/static/plugins/themify-icons/fonts/themify.ttf
Executable file
BIN
themes/educenter-hugo/static/plugins/themify-icons/fonts/themify.ttf
Executable file
Binary file not shown.
BIN
themes/educenter-hugo/static/plugins/themify-icons/fonts/themify.woff
Executable file
BIN
themes/educenter-hugo/static/plugins/themify-icons/fonts/themify.woff
Executable file
Binary file not shown.
1
themes/educenter-hugo/static/plugins/themify-icons/themify-icons.css
Executable file
1
themes/educenter-hugo/static/plugins/themify-icons/themify-icons.css
Executable file
File diff suppressed because one or more lines are too long
1
themes/educenter-hugo/static/plugins/venobox/venobox.css
Executable file
1
themes/educenter-hugo/static/plugins/venobox/venobox.css
Executable file
File diff suppressed because one or more lines are too long
1
themes/educenter-hugo/static/plugins/venobox/venobox.min.js
vendored
Executable file
1
themes/educenter-hugo/static/plugins/venobox/venobox.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user