Difference between revisions of "Template:KU Leuven"

Line 1: Line 1:
 
<html>
 
<html>
  
<script>
+
<script>// This is the jquery part of your template. 
 +
// Try not modify any of this code too much since it makes your menu work.
  
// This is the jquery part of your template. 
+
$(document).ready(function() {
// Try not modify any of this code too much since it makes your menu work.
+
  
$(document).ready(function() {
+
$("#HQ_page").attr('id','');
  
$("#HQ_page").attr('id','');
+
// call the functions that control the menu
 +
menu_functionality();
 +
hide_show_menu();
  
// call the functions that control the menu
 
menu_functionality();
 
hide_show_menu();
 
  
  
 +
//this function controls the expand and collapse buttons of the menu and changes the +/- symbols
 +
function menu_functionality() {
  
//this function controls the expand and collapse buttons of the menu and changes the +/- symbols
+
//when clicking on a "menu_button", it will change the "+/-" accordingly and it will show/hide the corresponding submenu
function menu_functionality() {
+
$(".menu_button").click(function(){
  
//when clicking on a "menu_button", it will change the "+/-" accordingly and it will show/hide the corresponding submenu
+
// add or remove the class "open" , this class holds the "-"  
$(".menu_button").click(function(){
+
$(this).children().toggleClass("open");
 +
// show or hide the submenu
 +
$(this).next('.submenu_wrapper').fadeToggle(400);
 +
});
  
// add or remove the class "open" , this class holds the "-"
+
// when the screen size is smaller than 800px, the display_menu_control button appears and will show/hide the whole menu
$(this).children().toggleClass("open");
+
$("#display_menu_control").click(function(){
// show or hide the submenu
+
$('#menu_content').fadeToggle(400);
$(this).next('.submenu_wrapper').fadeToggle(400);
+
});
});
+
  
// when the screen size is smaller than 800px, the display_menu_control button appears and will show/hide the whole menu
+
// call the current page highlight function
$("#display_menu_control").click(function(){
+
highlight_current_page();
$('#menu_content').fadeToggle(400);
+
}
});
+
  
// call the current page highlight function
 
highlight_current_page();
 
}
 
  
 +
// call the highlight current page function to show it on the menu with a different background color
 +
function highlight_current_page() {
  
// call the highlight current page function to show it on the menu with a different background color
+
// select a page from the menu based on the id assigned to it and the current page name and add the class "current page" to make it change background color
function highlight_current_page() {
+
$("#"+  wgPageName.substring(wgPageName.lastIndexOf("/")+1, wgPageName.length ) + "_page").addClass("current_page");
  
// select a page from the menu based on the id assigned to it and the current page name and add the class "current page" to make it change background color
+
// now that the current_page class has been added to a menu item, make the submenu fade in
$("#"+  wgPageName.substring(wgPageName.lastIndexOf("/")+1, wgPageName.length ) + "_page").addClass("current_page");
+
$(".current_page").parents(".submenu_wrapper").fadeIn(400);
 +
// change the +/- symbol of the corresponding menu button
 +
$(".current_page").parents(".submenu_wrapper").prev().children().toggleClass("open");
 +
 +
}
  
// now that the current_page class has been added to a menu item, make the submenu fade in
 
$(".current_page").parents(".submenu_wrapper").fadeIn(400);
 
// change the +/- symbol of the corresponding menu button
 
$(".current_page").parents(".submenu_wrapper").prev().children().toggleClass("open");
 
 
}
 
  
  
 +
// allow button on the black menu bar to show/hide the side menu
 +
function hide_show_menu() {
  
// allow button on the black menu bar to show/hide the side menu
+
// in case you preview mode is selected, the menu is hidden for better visibility  
function hide_show_menu() {
+
if (window.location.href.indexOf("submit") >= 0) {
+
$(".igem_2017_menu_wrapper").hide();
// in case you preview mode is selected, the menu is hidden for better visibility  
+
}
if (window.location.href.indexOf("submit") >= 0) {
+
$(".igem_2017_menu_wrapper").hide();
+
}
+
  
// if the black menu bar has been loaded
+
// if the black menu bar has been loaded
  if (document.getElementById('bars_item')) {
+
if (document.getElementById('bars_item')) {
  
// when the "bars_item" has been clicked
+
// when the "bars_item" has been clicked
$("#bars_item").click(function() {
+
$("#bars_item").click(function() {
$("#sideMenu").hide();
+
$("#sideMenu").hide();
  
// show/hide the menu wrapper
+
// show/hide the menu wrapper
$(".igem_2017_menu_wrapper").fadeToggle("100");
+
$(".igem_2017_menu_wrapper").fadeToggle("100");
});
+
});
  }  
+
}  
  
// because the black menu bars loads at a different time than the rest of the page, this function is set on a time out so it can run again in case it has not been loaded yet
+
// because the black menu bars loads at a different time than the rest of the page, this function is set on a time out so it can run again in case it has not been loaded yet
else {
+
else {
    setTimeout(hide_show_menu, 15);
+
setTimeout(hide_show_menu, 15);
}
+
 
}
 
}
 +
}
  
  
});
+
});</script>
 
+
<style>/***************************************************** DEFAULT WIKI SETTINGS  ****************************************************/
 
+
</script>
+
 
+
 
+
 
+
 
+
 
+
<style>
+
 
+
 
+
 
+
/***************************************************** DEFAULT WIKI SETTINGS  ****************************************************/
+
 
 
 
/* Clear the default wiki settings */
 
/* Clear the default wiki settings */
Line 182: Line 168:
 
 
 
.open::before {
 
.open::before {
content: "-" !important;   
+
//content: "-" !important;   
 
}
 
}
 
 
Line 224: Line 210:
 
}
 
}
 
 
 +
 +
/********************************* NAVBAR STYLING  *********************************/
 +
 +
.navbar {
 +
background-color: #f2f2f2;
 +
border-bottom: 0;
 +
}
 +
 +
.navbar * {
 +
font-family: Tahoma !important;
 +
font-weight: bold;
 +
}
 +
 +
.navbar-brand{
 +
padding: 0;
 +
}
 +
 +
.nav > li:focus, .nav > li:hover {
 +
background-color: #cc3333;
 +
color: #ffffff;
 +
}
 +
 +
.navbar-default .navbar-nav > .active > a {
 +
background-color: inherit;
 +
color: #cc3333 !important;
 +
}
 +
 +
.navbar-default .navbar-nav > li > a {
 +
color: inherit !important;
 +
}
 +
 +
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
 +
background-color: #cc3333 !important;
 +
color: #ffffff !important;
 +
}
 +
 +
.dropdown-menu > li {
 +
background-color: #f2f2f2;
 +
position: relative;
 +
}
 +
 +
.dropdown-menu > li > a:hover, .dropdown-menu > li >a:focus{
 +
color: #cc3333 !important;
 +
background-color: inherit !important;
 +
}
 +
 +
.dropdown-menu > li:hover::before, .dropdown-menu > li:focus::before {
 +
content: '';
 +
position: absolute;
 +
width: 16px ;
 +
height: 16px;
 +
top: 6px;
 +
left: -9px;
 +
background-image: url("assets/selector.png");
 +
background-size: 16px 16px;
 +
}
 +
 +
.dropdown-menu {
 +
padding: 0;
 +
border: 0;
 +
border-left: 2px solid #cc3333;
 +
min-width: 100%;
 +
}
 +
 +
span.caret {
 +
margin-left: 4px;
 +
}
  
 
/***************************************************** CONTENT OF THE PAGE ****************************************************/
 
/***************************************************** CONTENT OF THE PAGE ****************************************************/
Line 465: Line 518:
 
     font-weight: bold;
 
     font-weight: bold;
 
}
 
}
+
</style>
</style>
+
 
+
 
+
<!--- THIS IS WHERE THE HTML BEGINS --->
+
 
+
 
+
  
 
<head>  
 
<head>  
 
 
<!-- This tells the browser that your page is responsive -->
 
<!-- This tells the browser that your page is responsive -->
 
<meta name="viewport" content="width=device-width, initial-scale=1">  
 
<meta name="viewport" content="width=device-width, initial-scale=1">  
Line 483: Line 529:
  
  
 
+
<nav class="navbar navbar-default navbar-fixed-top">
<div class="igem_2017_menu_wrapper" >
+
<div class="container">
 
+
<div class="navbar-header">
 
+
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
 
+
<span class="sr-only">Toggle navigation</span>
<a class="banner" href="https://2017.igem.org/Team:KU_Leuven">
+
<span class="icon-bar"></span>
                <img src="https://static.igem.org/mediawiki/2017/5/5f/KU_Leuven-Logo_Banner.gif"/>
+
<span class="icon-bar"></span>
        </a>
+
<span class="icon-bar"></span>
 
+
</button>
 
+
<a class="navbar-brand" href="#">
<!-- this div is hidden by default and will only be displayed if the screen size is too small -->
+
<img height="100%" src="assets/LogoGif_alt.gif">
<div class="menu_button" id="display_menu_control">
+
</a>
MENU 
+
</div>
+
 
+
<div id="menu_content">
+
+
 
+
 
+
 
+
<a href="https://2017.igem.org/Team:KU_Leuven">
+
<div class="menu_button direct_to_page">
+
HOME
+
</div>  
+
</a>
+
 
+
 
+
 
+
<div class="menu_button">
+
<div class="expand_collapse_icon"> </div> TEAM
+
</div>  
+
 
+
<div class="submenu_wrapper" id="team_submenu">
+
+
<a href="https://2017.igem.org/Team:KU_Leuven/Team">
+
<div class="submenu_button" id="Team_page">
+
Team
+
 
</div>
 
</div>
</a>
+
<div id="navbar" class="navbar-collapse collapse">
 
+
<ul class="nav navbar-nav navbar-right">
<a href="https://2017.igem.org/Team:KU_Leuven/Collaborations">
+
<li class="active"><a href="#">HOME</a></li>
<div class="submenu_button" id="Collaborations_page">
+
<li class="dropdown">
Collaborations
+
<a href="#" class="dropdown-toggle " data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">TEAM<span class="caret"></span></a>
 +
<ul class="dropdown-menu dropdown-menu-left">
 +
<li><a href="#">Team</a></li>
 +
<li><a href="#">Collaborations</a></li>
 +
</ul>
 +
</li>
 +
<li class="dropdown">
 +
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">PROJECT<span class="caret"></span></a>
 +
<ul class="dropdown-menu dropdown-menu-left">
 +
<li><a href="#">Description</a></li>
 +
<li><a href="#">Design</a></li>
 +
<li><a href="#">Experiments</a></li>
 +
<li><a href="#">Notebook</a></li>
 +
<li><a href="#">InterLab</a></li>
 +
<li><a href="#">Contribution</a></li>
 +
<li><a href="#">Model</a></li>
 +
<li><a href="#">Results</a></li>
 +
<li><a href="#">Demonstrate</a></li>
 +
<li><a href="#">Improve</a></li>
 +
<li><a href="#">Attributions</a></li>
 +
</ul>
 +
</li>
 +
<li class="dropdown">
 +
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">PARTS<span class="caret"></span></a>
 +
<ul class="dropdown-menu dropdown-menu-left">
 +
<li><a href="#">Parts</a></li>
 +
<li><a href="#">Basic Parts</a></li>
 +
<li><a href="#">Composite Parts</a></li>
 +
<li><a href="#">Part Collection</a></li>
 +
</ul>
 +
</li>
 +
<li><a href="#about">SAFETY</a></li>
 +
<li class="dropdown">
 +
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">HUMAN PRACTICES<span class="caret"></span></a>
 +
<ul class="dropdown-menu dropdown-menu-left">
 +
<li><a href="#">Silver HP</a></li>
 +
<li><a href="#">Integrated and Gold</a></li>
 +
<li><a href="#">Public Engagement</a></li>
 +
</ul>
 +
</li>
 +
<li class="dropdown">
 +
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">AWARDS<span class="caret"></span></a>
 +
<ul class="dropdown-menu dropdown-menu-left">
 +
<li><a href="#">Applied Design</a></li>
 +
<li><a href="#">Entrepeneurship</a></li>
 +
<li><a href="#">Hardware</a></li>
 +
<li><a href="#">Measurement</a></li>
 +
<li><a href="#">Model</a></li>
 +
<li><a href="#">Plant</a></li>
 +
<li><a href="#">Software</a></li>
 +
</ul>
 +
</li>
 +
<li><a href="#about">JUDGING FORM</a></li>
 +
</ul>
 +
</div><!--/.nav-collapse -->
 
</div>
 
</div>
</a>
+
</nav>
+
<!-- OLD NAV
+
<div class="igem_2017_menu_wrapper" >
</div>
+
<a class="banner" href="https://2017.igem.org/Team:KU_Leuven">
 
+
<img src="https://static.igem.org/mediawiki/2017/5/5f/KU_Leuven-Logo_Banner.gif"/>
 
+
</a>
+
<div class="menu_button" id="display_menu_control">
+
MENU
 
+
<div class="menu_button">
+
<div class="expand_collapse_icon">  </div> PROJECT
+
</div>
+
 
+
<!-- project submenu -->
+
<div class="submenu_wrapper">
+
+
<a href="https://2017.igem.org/Team:KU_Leuven/Description">
+
<div class="submenu_button" id="Description_page">
+
Description
+
 
</div>
 
</div>
</a>
+
<div id="menu_content">
 
+
<a href="https://2017.igem.org/Team:KU_Leuven/Design">
+
<a href="https://2017.igem.org/Team:KU_Leuven">
<div class="submenu_button"  id="Design_page">
+
<div class="menu_button direct_to_page">
Design
+
HOME
 +
</div>
 +
</a>
 +
<div class="menu_button">
 +
<div class="expand_collapse_icon">  </div> TEAM
 +
</div>
 +
<div class="submenu_wrapper" id="team_submenu">
 +
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Team">
 +
<div class="submenu_button" id="Team_page">
 +
Team
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Collaborations">
 +
<div class="submenu_button"  id="Collaborations_page">
 +
Collaborations
 +
</div>
 +
</a>
 +
 +
 +
</div>
 +
 +
 +
<div class="menu_button">
 +
<div class="expand_collapse_icon">  </div> PROJECT
 +
</div>
 +
<div class="submenu_wrapper">
 +
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Description">
 +
<div class="submenu_button"  id="Description_page">
 +
Description
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Design">
 +
<div class="submenu_button"  id="Design_page">
 +
Design
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Experiments">
 +
<div class="submenu_button"  id="Experiments_page">
 +
Experiments
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Notebook">
 +
<div class="submenu_button"  id="Notebook_page">
 +
Notebook
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/InterLab">
 +
<div class="submenu_button"  id="InterLab_page">
 +
InterLab
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Contribution">
 +
<div class="submenu_button"  id="Contribution_page">
 +
Contribution
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Model">
 +
<div class="submenu_button"  id="Model_page">
 +
Model
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Results">
 +
<div class="submenu_button"  id="Results_page">
 +
Results
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Demonstrate">
 +
<div class="submenu_button"  id="Demonstrate_page">
 +
Demonstrate
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Improve">
 +
<div class="submenu_button"  id="Improve_page">
 +
Improve
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Attributions">
 +
<div class="submenu_button"  id="Attributions_page">
 +
Attributions
 +
</div>
 +
</a>
 +
</div>
 +
 +
 +
 +
 +
<div class="menu_button">
 +
<div class="expand_collapse_icon">  </div> PARTS
 +
</div>
 +
 +
<div class="submenu_wrapper">
 +
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Parts">
 +
<div class="submenu_button"  id="Parts_page">
 +
Parts
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Basic_Part">
 +
<div class="submenu_button"  id="Basic_Part_page">
 +
Basic Parts
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Composite_Part">
 +
<div class="submenu_button"  id="Composite_Part_page">
 +
Composite Parts
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Part_Collection">
 +
<div class="submenu_button"  id="Part_Collection_page">
 +
Part Collection
 +
</div>
 +
</a>
 +
</div>
 +
 +
 +
 +
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Safety">
 +
<div class="menu_button direct_to_page">
 +
SAFETY
 +
</div>
 +
</a>
 +
<div class="menu_button" >
 +
<div class="expand_collapse_icon">  </div> HUMAN PRACTICES
 +
</div>
 +
<div class="submenu_wrapper">
 +
<a href="https://2017.igem.org/Team:KU_Leuven/HP/Silver">
 +
<div class="submenu_button"  id="Silver_page">
 +
Silver HP
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/HP/Gold_Integrated">
 +
<div class="submenu_button" id="Gold_Integrated_page">
 +
Integrated and Gold
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Engagement">
 +
<div class="submenu_button"  id="Engagement_page">
 +
Public Engagement
 +
</div>
 +
</a>
 +
</div>
 +
<div class="menu_button">
 +
<div class="expand_collapse_icon">  </div> AWARDS
 +
</div>
 +
<div class="submenu_wrapper">
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Applied_Design">
 +
<div class="submenu_button"  id="Applied_Design_page">
 +
Applied Design
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Entrepreneurship">
 +
<div class="submenu_button"  id="Entrepreneurship_page">
 +
Entrepreneurship
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Hardware">
 +
<div class="submenu_button"  id="Hardware_page">
 +
Hardware
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Measurement">
 +
<div class="submenu_button"  id="Measurement_page">
 +
Measurement
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Model">
 +
<div class="submenu_button"  id="Model_page">
 +
Model
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Plant">
 +
<div class="submenu_button"  id="Plant_page">
 +
Plant
 +
</div>
 +
</a>
 +
<a href="https://2017.igem.org/Team:KU_Leuven/Software">
 +
<div class="submenu_button"  id="Software_page">
 +
Software
 +
</div>
 +
</a>
 +
</div>
 +
<a href="https://igem.org/2017_Judging_Form?team=KU_Leuven">
 +
<div class="menu_button direct_to_page">
 +
JUDGING FORM
 +
</div>
 +
</a>
 +
 +
<div class="menu_bottom_padding" >
 +
</div>
 +
 
</div>
 
</div>
</a>
+
</div>
 
+
-->
<a href="https://2017.igem.org/Team:KU_Leuven/Experiments">
+
<div class="submenu_button"  id="Experiments_page">
+
Experiments
+
</div>
+
</a>
+
 
+
 
+
<a href="https://2017.igem.org/Team:KU_Leuven/Notebook">
+
<div class="submenu_button"  id="Notebook_page">
+
Notebook
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:KU_Leuven/InterLab">
+
<div class="submenu_button"  id="InterLab_page">
+
InterLab
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:KU_Leuven/Contribution">
+
<div class="submenu_button"  id="Contribution_page">
+
Contribution
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:KU_Leuven/Model">
+
<div class="submenu_button"  id="Model_page">
+
Model
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:KU_Leuven/Results">
+
<div class="submenu_button"  id="Results_page">
+
Results
+
</div>
+
</a>
+
 
+
 
+
<a href="https://2017.igem.org/Team:KU_Leuven/Demonstrate">
+
<div class="submenu_button"  id="Demonstrate_page">
+
Demonstrate
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:KU_Leuven/Improve">
+
<div class="submenu_button"  id="Improve_page">
+
Improve
+
</div>
+
</a>
+
 
+
<a href="https://2017.igem.org/Team:KU_Leuven/Attributions">
+
<div class="submenu_button"  id="Attributions_page">
+
Attributions
+
</div>
+
</a>
+
 
+
</div>
+
 
+
+
+
+
+
 
+
<div class="menu_button">
+
<div class="expand_collapse_icon">  </div> PARTS
+
</div>
+
+
<!-- parts submenu -->
+
<div class="submenu_wrapper">
+
 
 
<a href="https://2017.igem.org/Team:KU_Leuven/Parts">
 
<div class="submenu_button"  id="Parts_page">
 
Parts
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:KU_Leuven/Basic_Part">
 
<div class="submenu_button"  id="Basic_Part_page">
 
Basic Parts
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:KU_Leuven/Composite_Part">
 
<div class="submenu_button"  id="Composite_Part_page">
 
Composite Parts
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:KU_Leuven/Part_Collection">
 
<div class="submenu_button"  id="Part_Collection_page">
 
Part Collection
 
</div>
 
</a>
 
</div>
 
 
 
 
 
 
 
<a href="https://2017.igem.org/Team:KU_Leuven/Safety">
 
<div class="menu_button direct_to_page">
 
SAFETY
 
</div>
 
</a>
 
 
 
 
 
 
 
 
<div class="menu_button" >
 
<div class="expand_collapse_icon">  </div> HUMAN PRACTICES
 
</div>
 
 
<!-- human practices submenu -->
 
<div class="submenu_wrapper">
 
 
<a href="https://2017.igem.org/Team:KU_Leuven/HP/Silver">
 
<div class="submenu_button"  id="Silver_page">
 
Silver HP
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:KU_Leuven/HP/Gold_Integrated">
 
<div class="submenu_button" id="Gold_Integrated_page">
 
Integrated and Gold
 
</div>
 
</a>
 
 
 
<a href="https://2017.igem.org/Team:KU_Leuven/Engagement">
 
<div class="submenu_button"  id="Engagement_page">
 
Public Engagement
 
</div>
 
</a>
 
 
</div>
 
 
 
<div class="menu_button">
 
<div class="expand_collapse_icon">  </div> AWARDS
 
</div>
 
 
<!-- awards submenu -->
 
<div class="submenu_wrapper">
 
 
<a href="https://2017.igem.org/Team:KU_Leuven/Applied_Design">
 
<div class="submenu_button"  id="Applied_Design_page">
 
Applied Design
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:KU_Leuven/Entrepreneurship">
 
<div class="submenu_button"  id="Entrepreneurship_page">
 
Entrepreneurship
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:KU_Leuven/Hardware">
 
<div class="submenu_button"  id="Hardware_page">
 
Hardware
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:KU_Leuven/Measurement">
 
<div class="submenu_button"  id="Measurement_page">
 
Measurement
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:KU_Leuven/Model">
 
<div class="submenu_button"  id="Model_page">
 
Model
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:KU_Leuven/Plant">
 
<div class="submenu_button"  id="Plant_page">
 
Plant
 
</div>
 
</a>
 
 
 
<a href="https://2017.igem.org/Team:KU_Leuven/Software">
 
<div class="submenu_button"  id="Software_page">
 
Software
 
</div>
 
</a>
 
 
</div>
 
 
<a href="https://igem.org/2017_Judging_Form?team=KU_Leuven">
 
<div class="menu_button direct_to_page">
 
JUDGING FORM
 
</div>
 
</a>
 
 
 
 
<div class="menu_bottom_padding" >
 
</div>
 
 
</div>
 
 
 
 
  
</div>
 
  
  

Revision as of 11:05, 13 July 2017