/home/mip/mip/public/img/credit/datatables/layouts.blade.php.tar
home/mip/mip/resources/views/website/layouts.blade.php000066400000005163151520617670017157 0ustar00<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="utf-8">
		<meta http-equiv="X-UA-Compatible" content="IE=edge">
		<meta name="viewport" content="width=device-width, initial-scale=1">
		
		<title>MIP International Manpower Services INC.</title>
		<!-- Bootstrap -->
		<link href="{{asset('website/css/bootstrap.min.css')}}" rel="stylesheet">
		<!-- Custom Stylesheet -->
		<link href="{{asset('website/css/mip-stylesheet.css')}}" rel="stylesheet">
		<!-- Google Fonts -->
		<link href='https://fonts.googleapis.com/css?family=Raleway:400,700' rel='stylesheet' type='text/css'>
        <link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet"> 
        <!-- Animate css -->
        <link href="{{asset('website/css/animate.css')}}" rel="stylesheet">
		<!-- Font Awesome -->
		<script src="https://use.fontawesome.com/13c7cdee2c.js"></script>
		
		<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
	
	<head>
        @yield('page-css')
    </head>
    <body>
        @include('website.includes.nav')
        @yield('page-body')
        @include('website.includes.footer')
        <!-- Scroll to Top -->
        <a href="javascript:" id="return-to-top"><i><img src="{{asset('website/images/up-chevron.svg')}}" alt=""></i></a>

		<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
		<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
		<!-- Include all compiled plugins (below), or include individual files as needed -->
		<script src="{{asset('website/js/bootstrap.min.js') }}"></script>
	
		<script type="text/javascript">
			function openNav() {
			    document.getElementById("myNav").style.width = "100%";
			    $('body').css({'overflow':'hidden'});
			}

			function closeNav() {
			    document.getElementById("myNav").style.width = "0%";
			    $('body').css({'overflow':'visible'});
			}
		</script>  
       
        <script>
            // ===== Scroll to Top ==== 
            $(window).scroll(function() {
                if ($(this).scrollTop() >= 250) {        // If page is scrolled more than 250px
                    $('#return-to-top').fadeIn(200);    // Fade in the arrow
                } else {
                    $('#return-to-top').fadeOut(200);   // Else fade out the arrow
                }
            });
            $('#return-to-top').click(function() {      // When arrow is clicked
                $('body,html').animate({
                    scrollTop : 0                       // Scroll to top of body
                }, 500);
            });
        </script>
              
        @yield('page-js')
    </body>
</html>