Difference between revisions of "Template:RISE foot"

m
Line 1: Line 1:
<!--- THIS IS WHERE THE HTML BEGINS --->
 
 
 
<!-- This tells the browser that your page is responsive -->
 
 
<head>
 
<meta name="viewport" content="width=device-width, initial-scale=1">
 
</head>
 
 
 
 
 
         <!-- Footer
 
         <!-- Footer
 
             ============================================= -->
 
             ============================================= -->

Revision as of 17:37, 5 August 2016

       <footer>

Rise

© 2015 Rise.Development By BootstrapDev
       </footer>
       <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
       <script src="bootstrap-assets/js/bootstrap.min.js"></script>
       <script src="js/custom.js"></script>
       <script src="plugins/owl-carousel/owl.carousel.min.js"></script>
       <script src="js/jquery.easing.min.js"></script>
       <script src="plugins/waypoints/jquery.waypoints.min.js"></script>
       <script src="plugins/countTo/jquery.countTo.js"></script>
       <script src="plugins/inview/jquery.inview.min.js"></script>
       <script src="plugins/Lightbox/dist/js/lightbox.min.js"></script>
       <script src="plugins/WOW/dist/wow.min.js"></script>
       <script src="https://maps.googleapis.com/maps/api/js"></script>
   </body>




<script>

// This is the jquery part of your template. Try not modify any of this code since it makes your menu work.

$(document).ready(function() {

$("#HQ_page").attr('id',);


if ( wgPageName.substring( 0, 8) == "Template") { // if the page is a template it displays the full name in a single line $("#team_name").html( wgPageName ); }

else if ( ( (wgPageName.match(/\//g) || []).length ) == 0 ) { // if it is the home page , just print the team's name $("#team_name").html( wgPageName.substring( 5, wgPageName.length ) ); }

else { // this adds the team's name as an h1 $("#team_name").html( wgPageName.substring( 5 , wgPageName.indexOf("/") ) );

// this adds the page's title as an h4 $("#page_name").html ( ( wgPageName.substring( wgPageName.indexOf("/") + 1, wgPageName.length ) ).replace( /\/|_/g , " ") ); }



$('#accordion').find('.menu_item').click(function(){

//Expand or collapse this panel submenu = $(this).find('.submenu'); submenu.toggle();

icon = $(this).find('.icon');

if ( !$( submenu ).is(':visible') ) { icon.removeClass("less").addClass("plus"); } else { icon.removeClass("plus").addClass("less"); }

//Hide the other panels $(".submenu").not(submenu).hide(); $(".icon").not(icon).removeClass("less").addClass("plus"); });


$(".collapsable_menu_control").click(function() { $(".menu_item").toggle(); });

$( window ).resize(function() { $(".menu_item").show(); });


});



</script>


</html>