Team:INSA Toulouse/template/header

From 2013.igem.org

(Difference between revisions)
 
(14 intermediate revisions not shown)
Line 1: Line 1:
 +
<html>
-
<div class="head">
+
<!-- JAVASCRIPTS -->
 +
<!-- *********** -->
-
<div class="barhead" style=" width:100%; height:34px; background-color:#64b0e7;">
+
    <!-- ie9.js (fixes all Internet Explorer browsers older than ie9) -->
 +
    <!--[if lt IE 9]>
 +
    <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
 +
    <![endif]-->
-
</div>
+
    <!-- jQuery Tools (slider) -->
 +
    <script src="http://cdn.jquerytools.org/1.2.5/full/jquery.tools.min.js"></script>
 +
    <script>
 +
        $(function() {
 +
    // initialize scrollable
 +
    $(".scrollable").scrollable().navigator();
 +
        });
 +
    </script>
-
<div class="secondhead" style=" width:100%; height:127px; background-color:#f6f6f6; border-bottom:1px solid #ececec;">
+
    <!-- Navigation scroll follow -->
 +
    <script type="text/javascript">
 +
        $(window).scroll(function () {
 +
            var scrollPos = $(window).scrollTop();
 +
            if (scrollPos > 110) {
 +
                $(".navigation").addClass("stickToTop");
 +
            } else {
 +
                $(".navigation").removeClass("stickToTop");
 +
            }
 +
            if (scrollPos > 180) {
 +
                $(".toc").addClass("stickBelowNavigation");
 +
            } else {
 +
                $(".toc").removeClass("stickBelowNavigation");
 +
            }
 +
        });
 +
    </script>
-
<img src="" style="width:238px; height:75px; background-color:red;" />
+
    <!-- MathJax (LaTeX for the web) -->
 +
    <script type="text/x-mathjax-config">
 +
        MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
 +
        MathJax.Hub.Config({
 +
            TeX: {
 +
                equationNumbers: {  autoNumber: "AMS"  }
 +
            }
 +
        });
 +
    </script>
 +
    <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
-
</div>
+
    <!-- Sexy Drop Down (drop down navigation) -->
 +
    <script type="text/javascript">
 +
        $(document).ready(
 +
            function(){
 +
                $("ul.subnav").parent().find("> a").append("<span> ▼</span>");
 +
                $("ul.topnav li").hover(
 +
                    function() {
 +
                        // Hover over
 +
                        $(this).parent().find("ul.subnav").hide();
 +
                        $(this).find("ul.subnav").show();
 +
                        // Hover out
 +
                        $(this).hover(
 +
                            function() {
 +
                            },
 +
                            function(){
 +
                                $(this).find("ul.subnav").hide();
 +
                            }
 +
                        );
 +
                    },
 +
                    function(){
 +
                        $(this).find("ul.subnav").hide();
 +
                    }
-
</div>
+
                );
 +
            }
 +
        );
 +
    </script>
 +
 
 +
    <!-- iGem wiki hacks -->
 +
        <!-- Remove all empty <p> tags -->
 +
        <script type="text/javascript">
 +
            $(document).ready(function() {
 +
                $("p").filter( function() {
 +
                    return $.trim($(this).html()) == '';
 +
                }).remove();
 +
            });
 +
        </script>
 +
 
 +
        <!-- Remove "team" from the menubar -->
 +
        <script type="text/javascript">
 +
            $(document).ready(function() {
 +
                $("menubar > ul > li:last-child").remove();
 +
            });
 +
        </script>
 +
 
 +
        <!-- Empty heading? - Then remove it.. -->
 +
        <script type="text/javascript">
 +
            $(document).ready(function() {
 +
                if ("" == "</html>{{{1}}}<html>") {
 +
                    $("#heading").remove();
 +
                }
 +
            });
 +
        </script>
 +
 
 +
 
 +
<!-- HTML CONTENT -->
 +
<!-- ************ -->
 +
 
 +
    <!-- Bar Header -->
 +
    <div class="barheader">
 +
        <div class="centering">
 +
 
 +
              <!-- Logo -->
 +
          <div class="logoheader">
 +
            <a href="https://2013.igem.org/Team:INSA_Toulouse"><img src="https://static.igem.org/mediawiki/2013/9/97/Insa-toulouse2013-logo.png" alt="logo" /></a>
 +
          </div>
 +
 
 +
        </div>
 +
    </div>
 +
 
 +
    <!-- Header image -->
 +
    <div id="header">
 +
 
 +
          <!-- Navigation bar -->
 +
          </html>{{:Team:INSA_Toulouse/template/navigation}}<html>
 +
 
 +
       
 +
    </div>
 +
 
 +
</html>
 +
 
 +
<html>
 +
 
 +
    <div id="innercontent">
 +
        <div class="bar-inner"></div>
 +
        <div class="centering">
 +
 
 +
</html>

Latest revision as of 12:10, 12 August 2013

logo