Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Jun 24, 2024
1 parent ba97c30 commit c3c3e38
Show file tree
Hide file tree
Showing 15 changed files with 5,696 additions and 89 deletions.
4,327 changes: 4,327 additions & 0 deletions css/bootstrap.min.css

Large diffs are not rendered by default.

834 changes: 834 additions & 0 deletions css/style.css

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions css/vendor-bundle.min.f1ecf783c14edc00c9320c205831ad8e.css

Large diffs are not rendered by default.

Binary file added img/preloader.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
359 changes: 270 additions & 89 deletions index.html

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions js/bootstrap.min.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions js/jquery-2.1.4.min.js

Large diffs are not rendered by default.

44 changes: 44 additions & 0 deletions js/jquery.easing.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

107 changes: 107 additions & 0 deletions js/scripts.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
jQuery(function ($) {

'use strict';

// --------------------------------------------------------------------
// PreLoader
// --------------------------------------------------------------------

(function () {
$('#preloader').delay(200).fadeOut('slow');
}());

// --------------------------------------------------------------------
// One Page Navigation
// --------------------------------------------------------------------

(function () {
$(window).scroll(function () {
if ($(this).scrollTop() >= 50) {
$('nav.navbar').addClass('sticky-nav');
}
else {
$('nav.navbar').removeClass('sticky-nav');
}
});
}());

// --------------------------------------------------------------------
// jQuery for page scrolling feature - requires jQuery Easing plugin
// --------------------------------------------------------------------

(function () {
$('a.page-scroll').on('click', function (e) {
e.preventDefault();
var $anchor = $(this);
$('html, body').stop().animate({
scrollTop : $($anchor.attr('href')).offset().top
}, 1500, 'easeInOutExpo');
});
}());

// --------------------------------------------------------------------
// Closes the Responsive Menu on Menu Item Click
// --------------------------------------------------------------------

(function () {
$('.navbar-collapse ul li a').on('click', function () {
if ($(this).attr('class') != 'dropdown-toggle active' && $(this).attr('class') != 'dropdown-toggle') {
$('.navbar-toggle:visible').trigger('click');
}
});
}());

// --------------------------------------------------------------------
// Google Map
// --------------------------------------------------------------------

(function () {
if ($('#googleMap').length > 0) {

//set your google maps parameters
var $latitude = 48.869319, //If you unable to find latitude and longitude of your address. Please visit http://www.latlong.net/convert-address-to-lat-long.html you can easily generate.
$longitude = 2.354261,
$map_zoom = 18;
/* ZOOM SETTING */

//google map custom marker icon
var $marker_url = 'img/google-map-marker.png';

//we define here the style of the map
var style = [{
"stylers" : [{
"hue" : "#000"
}, {
"saturation" : 100
}, {
"gamma" : 1.15
}, {
"lightness" : 5
}]
}];

//set google map options
var map_options = {
center : new google.maps.LatLng($latitude, $longitude),
zoom : $map_zoom,
panControl : false,
zoomControl : false,
mapTypeControl : false,
streetViewControl : false,
mapTypeId : google.maps.MapTypeId.ROADMAP,
scrollwheel : false,
styles : style,
}
//initialize the map
var map = new google.maps.Map(document.getElementById('googleMap'), map_options);
//add a custom marker to the map
var marker = new google.maps.Marker({
position : new google.maps.LatLng($latitude, $longitude),
map : map,
visible : true,
icon : $marker_url
});
}
}());

}); // JQuery end
1 change: 1 addition & 0 deletions static/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Anything static content goes here.
Binary file added static/img/background.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/background_old.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/hda.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/ml4astro_logos.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
100 changes: 100 additions & 0 deletions static/img/ml4astro_logos.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit c3c3e38

Please sign in to comment.