Team:TU Delft/test
From 2010.igem.org
(Difference between revisions)
(24 intermediate revisions not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
<html> | <html> | ||
- | |||
<!-- | <!-- | ||
Line 24: | Line 23: | ||
<!-- Internet Explorer PNG fix - START /--> | <!-- Internet Explorer PNG fix - START /--> | ||
- | <!--[if lt IE | + | <!--[if lt IE 7]> |
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE8.js">IE7_PNG_SUFFIX=".png";</script> | <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE8.js">IE7_PNG_SUFFIX=".png";</script> | ||
<![endif]--> | <![endif]--> | ||
Line 43: | Line 42: | ||
var in_frame_test = 1; | var in_frame_test = 1; | ||
var ampersandStr = String.fromCharCode(38); | var ampersandStr = String.fromCharCode(38); | ||
+ | var loading_home = false; | ||
function dbgout(msg) { | function dbgout(msg) { | ||
var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1; | var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1; | ||
if(is_chrome) console.log(msg); | if(is_chrome) console.log(msg); | ||
+ | } | ||
+ | |||
+ | function updateContentEditLink() { | ||
+ | if (!wgUserName) { | ||
+ | return; | ||
+ | } | ||
+ | |||
+ | var page = currentPage ? currentPage : 'Home'; | ||
+ | var url = location.pathname + '/' + page + '?action=edit'; | ||
+ | $("#edit_content_link").attr('href', url); | ||
+ | // $("#edit_content_link").click(function() { | ||
+ | // $("#iGEM_TU_Delft_container").html('<iframe src="'+url+'" width="100%" height="100%"></iframe>'); | ||
+ | // }); | ||
+ | |||
} | } | ||
// Set document ready callback | // Set document ready callback | ||
$(function() { | $(function() { | ||
+ | if (wgUserName) { | ||
+ | // Create content edit link | ||
+ | $(".left-menu ul > *:last").after('<li><a id="edit_content_link">edit content</a></li>'); | ||
+ | updateContentEditLink(); | ||
+ | } | ||
+ | |||
// Initialize history plugin. | // Initialize history plugin. | ||
$(window).hashchange(historyCallback); | $(window).hashchange(historyCallback); | ||
Line 98: | Line 118: | ||
function include_js(file, cb) { | function include_js(file, cb) { | ||
- | + | var html_doc = document.getElementsByTagName('head')[0]; | |
- | + | var js = document.createElement('script'); | |
- | + | js.setAttribute('type', 'text/javascript'); | |
- | + | js.setAttribute('src', file); | |
- | + | html_doc.appendChild(js); | |
- | + | js.onreadystatechange = function () { | |
- | + | if (js.readyState == 'complete') | |
- | + | cb(); | |
- | + | } | |
- | + | ||
- | + | js.onload = cb; | |
} | } | ||
Line 118: | Line 137: | ||
} | } | ||
- | function loadPage(page) | + | |
+ | function moveToAnchor(anchor) { | ||
+ | try { | ||
+ | var pos = $('#iGEM_TU_Delft_container > a[name='+anchor+']').offset(); | ||
+ | dbgout('anchor: '+anchor+'; pos=' + pos.left + ','+pos.top ); | ||
+ | window.scroll(pos.left, pos.top); | ||
+ | } catch (err) { | ||
+ | dbgout('moveToAnchor error: ' + err); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | |||
+ | function loadPage(page, anchor) | ||
{ | { | ||
+ | var showLoadAnim = !!currentPage; | ||
currentPage = page; | currentPage = page; | ||
var url = wgServer + "/Team:TU_Delft/" + page + "?action=render"; | var url = wgServer + "/Team:TU_Delft/" + page + "?action=render"; | ||
+ | if(page.substring(0, 5) == "User:") { | ||
+ | url = wgServer + "/" + page + "?action=render"; | ||
+ | } | ||
$(window).trigger('page_close'); | $(window).trigger('page_close'); | ||
- | $("#iGEM_TU_Delft_container"). | + | |
+ | if(showLoadAnim) { | ||
+ | $("#TUD-loading-panel").show(); | ||
+ | //$("#loading-overlay").show(); | ||
+ | $("#iGEM_TU_Delft_container").fadeTo(200,0.25); | ||
+ | $('html, body').animate({scrollTop:0}, 'slow'); | ||
+ | } | ||
+ | loading_home = false; | ||
var processPage = function(next) { | var processPage = function(next) { | ||
Line 129: | Line 171: | ||
$(window).trigger('page_init'); | $(window).trigger('page_init'); | ||
rewriteLinks($("#iGEM_TU_Delft_container")); | rewriteLinks($("#iGEM_TU_Delft_container")); | ||
+ | if (anchor) moveToAnchor(anchor); | ||
+ | updateContentEditLink(); | ||
+ | $("#iGEM_TU_Delft_container").fadeTo(200,1); | ||
next(); | next(); | ||
} | } | ||
$.get(url, function(data) { | $.get(url, function(data) { | ||
- | $("#iGEM_TU_Delft_container").html(data | + | $("#iGEM_TU_Delft_container").html(data).queue(processPage); |
buildBreadCrumbTrail(page); | buildBreadCrumbTrail(page); | ||
Cufon.replace('h2'); // Works without a selector engine | Cufon.replace('h2'); // Works without a selector engine | ||
Line 139: | Line 184: | ||
Cufon.replace('#sub1'); // Requires a selector engine for IE 6-7, see above | Cufon.replace('#sub1'); // Requires a selector engine for IE 6-7, see above | ||
$("tr:nth-child(odd)").addClass("odd"); | $("tr:nth-child(odd)").addClass("odd"); | ||
+ | |||
+ | $("#TUD-loading-panel").hide(); | ||
+ | $("#loading-overlay").hide(); | ||
}); | }); | ||
} | } | ||
Line 154: | Line 202: | ||
if (changepage) { | if (changepage) { | ||
- | loadPage(changepage); | + | loadPage(changepage, kvmap.anchor); |
- | } else | + | } else { |
+ | if(kvmap.anchor) moveToAnchor(kvmap.anchor); | ||
$(window).trigger('hashupdate'); | $(window).trigger('hashupdate'); | ||
+ | } | ||
} | } | ||
} else { | } else { | ||
Line 162: | Line 212: | ||
} | } | ||
} | } | ||
- | |||
function rewriteLinks(elem) { | function rewriteLinks(elem) { | ||
Line 169: | Line 218: | ||
var url = this.href; | var url = this.href; | ||
- | if(this.hash) | + | if(this.hash) { |
- | this. | + | var anchor = this.hash.substring(1); |
- | else if(txt != "edit") | + | |
+ | if (anchor.substring(0,5)!='page=') | ||
+ | this.href = '#page=' + currentPage + ampersandStr + 'anchor=' + anchor; | ||
+ | } else if(txt != "edit") | ||
this.href = this.href.replace("https://2010.igem.org/Team:TU_Delft/", "#page="); | this.href = this.href.replace("https://2010.igem.org/Team:TU_Delft/", "#page="); | ||
- | // | + | // dbgout('rewriting ' + url + ' to ' + this.href); |
}); | }); | ||
} | } | ||
Line 188: | Line 240: | ||
jsddm_canceltimer(); | jsddm_canceltimer(); | ||
jsddm_close(); | jsddm_close(); | ||
- | ddmenuitem = $(this).find('ul').css(' | + | ddmenuitem = $(this).find('ul').css('display', 'block'); |
+ | //ddmenuitem = $(this).find('ul').show(200); | ||
} | } | ||
function jsddm_close() { | function jsddm_close() { | ||
- | if(ddmenuitem) ddmenuitem.css(' | + | if(ddmenuitem) ddmenuitem.css('display', 'none'); |
+ | //if(ddmenuitem) ddmenuitem.hide(); | ||
} | } | ||
Line 239: | Line 293: | ||
for (count=0;count<(constituentFolders.length);count++) | for (count=0;count<(constituentFolders.length);count++) | ||
{ | { | ||
+ | if(constituentFolders[count].substring(0, 5) == "User:") { | ||
+ | outputStr = outputStr + " <span class='doubleright'>»</span> <a href='https://2010.igem.org/Team:TU_Delft#page=Team/'>Team</a> <span class='doubleright'>»</span> <a href='https://2010.igem.org/Team:TU_Delft#page=Team/members'>Members</a> <span class='doubleright'>»</span> <a href='https://2010.igem.org/Team:TU_Delft#page=" + buildDepth(constituentFolders,count) + constituentFolders[count] + "'>" + capitaliseFirstLetter(constituentFolders[count]).replace(/-/gi," ").substring(5) + "</a>"; | ||
+ | } | ||
+ | if(constituentFolders[count].substring(0, 5) !== "User:") { | ||
outputStr=outputStr + " <span class='doubleright'>»</span> <a href='https://2010.igem.org/Team:TU_Delft#page=" + buildDepth(constituentFolders,count) + constituentFolders[count] + "'>" + capitaliseFirstLetter(constituentFolders[count]).replace(/-/gi," ") + "</a>"; | outputStr=outputStr + " <span class='doubleright'>»</span> <a href='https://2010.igem.org/Team:TU_Delft#page=" + buildDepth(constituentFolders,count) + constituentFolders[count] + "'>" + capitaliseFirstLetter(constituentFolders[count]).replace(/-/gi," ") + "</a>"; | ||
+ | } | ||
} | } | ||
} | } | ||
Line 289: | Line 348: | ||
h1{border:none; width: 100%; clear: both;} | h1{border:none; width: 100%; clear: both;} | ||
/* Wiki Hacks - END */ | /* Wiki Hacks - END */ | ||
+ | |||
+ | table { | ||
+ | margin: 0; | ||
+ | padding: 0; | ||
+ | font-size: 11px; | ||
+ | border: 1px solid #000; | ||
+ | } | ||
+ | table td { | ||
+ | padding: 5px; | ||
+ | } | ||
+ | table .head { | ||
+ | background-color: #216085 ; | ||
+ | font-weight: bold; | ||
+ | color: #fff; | ||
+ | } | ||
+ | table .odd { | ||
+ | background-color: #d0f1fa; | ||
+ | } | ||
+ | |||
h2 { | h2 { | ||
font-size: 30px; | font-size: 30px; | ||
Line 311: | Line 389: | ||
font-size: 12px; | font-size: 12px; | ||
color: #222222; | color: #222222; | ||
+ | min-width: 1050px; | ||
} | } | ||
Line 453: | Line 532: | ||
width: 100%; | width: 100%; | ||
height: 100%; | height: 100%; | ||
- | + | display:none; | |
} | } | ||
#TUD-loading-panel-logo { | #TUD-loading-panel-logo { | ||
- | |||
margin: 0 auto; | margin: 0 auto; | ||
+ | margin-top: 250px; | ||
+ | } | ||
+ | |||
+ | #loading-overlay { | ||
+ | z-index: 70; | ||
+ | width: 100%; | ||
+ | height: 100%; | ||
+ | display:none; | ||
+ | opacity:0.4; | ||
+ | filter:alpha(opacity=40); | ||
} | } | ||
Line 492: | Line 580: | ||
#navlist li ul { | #navlist li ul { | ||
position: absolute; | position: absolute; | ||
- | + | display:none; | |
background-color: #fff; | background-color: #fff; | ||
padding:0; | padding:0; | ||
Line 546: | Line 634: | ||
<div id="TUD-loading-panel-logo"> | <div id="TUD-loading-panel-logo"> | ||
<!-- yes im using center --> | <!-- yes im using center --> | ||
- | <center><img src="https://static.igem.org/mediawiki/2010/d/d8/TUDelft_2010_AlkanivoreAnimated.gif"></ | + | <center><img width="100" height="120" src="https://static.igem.org/mediawiki/2010/d/d8/TUDelft_2010_AlkanivoreAnimated.gif" /> <h2>Loading...</h2></center> |
- | </div> | + | </div> |
</div> | </div> | ||
Line 555: | Line 643: | ||
<div id="TUD-content-wrapper"> | <div id="TUD-content-wrapper"> | ||
<div id="TUD-header"> | <div id="TUD-header"> | ||
- | <h1 class="TUD-logo"><span>TU Delft iGEM Team 2010</span></h1> | + | <style> |
+ | a.nohover:hover { | ||
+ | text-decoration: none; | ||
+ | } | ||
+ | </style> | ||
+ | <a class="nohover" href="https://2010.igem.org/Team:TU_Delft"><h1 class="TUD-logo"><span>TU Delft iGEM Team 2010</span></h1></a> | ||
<span id="back_to_igem"><a href="https://2010.igem.org/" alt="back to 2010.igem.org" title="back to 2010.igem.org"><img src="https://static.igem.org/mediawiki/2010/3/32/TU_Delft_back_to_igem.png" border="0" /></a></span> | <span id="back_to_igem"><a href="https://2010.igem.org/" alt="back to 2010.igem.org" title="back to 2010.igem.org"><img src="https://static.igem.org/mediawiki/2010/3/32/TU_Delft_back_to_igem.png" border="0" /></a></span> | ||
</div> | </div> | ||
Line 561: | Line 654: | ||
<ul id="navlist"> | <ul id="navlist"> | ||
- | <li><a class="menubutton" id="home" href="https://2010.igem.org/Team:TU_Delft | + | <li><a class="menubutton" id="home" href="https://2010.igem.org/Team:TU_Delft/Home" title="Home"><span>Home</span></a></li> |
- | <li><a class="menubutton" id="team" href="https://2010.igem.org/Team:TU_Delft | + | <li><a class="menubutton" id="team" href="https://2010.igem.org/Team:TU_Delft/Team" title="Team"><span>Team</span></a> |
<ul> | <ul> | ||
+ | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Team" title="Overview">Overview</a></li> | ||
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/members" title="Members">Members</a></li> | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/members" title="Members">Members</a></li> | ||
+ | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/organization" title="Organization">Organization</a></li> | ||
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/university" title="University">University</a></li> | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/university" title="University">University</a></li> | ||
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/previous-teams" title="Previous Teams">Previous Teams</a></li> | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/previous-teams" title="Previous Teams">Previous Teams</a></li> | ||
Line 575: | Line 670: | ||
<li><a class="menubutton" id="project" href="https://2010.igem.org/Team:TU_Delft#page=Project" title="Project">Project</a> | <li><a class="menubutton" id="project" href="https://2010.igem.org/Team:TU_Delft#page=Project" title="Project">Project</a> | ||
<ul> | <ul> | ||
- | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Project | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Project" title="Overview">Overview</a></li> |
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/introduction" title="Introduction">Introduction</a></li> | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/introduction" title="Introduction">Introduction</a></li> | ||
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/alkane-degradation" title="Alkane Degradation">Alkane Degradation</a></li> | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/alkane-degradation" title="Alkane Degradation">Alkane Degradation</a></li> | ||
- | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/ | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/sensing" title="Hydrocarbon Sensing">Sensing</a></li> |
- | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/ | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/tolerance" title="Survival">Survival</a></li> |
- | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/ | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/solubility" title="Emulsification">Solubility</a></li> |
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/rbs-characterization" title="RBS Characterization">RBS Characterization</a></li> | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/rbs-characterization" title="RBS Characterization">RBS Characterization</a></li> | ||
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/conclusions" title="General Conclusions">General Conclusions</a></li> | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/conclusions" title="General Conclusions">General Conclusions</a></li> | ||
Line 588: | Line 683: | ||
<li><a class="menubutton" id="insilico" href="https://2010.igem.org/Team:TU_Delft#page=Notebook" title="Notebook">Notebook</a> | <li><a class="menubutton" id="insilico" href="https://2010.igem.org/Team:TU_Delft#page=Notebook" title="Notebook">Notebook</a> | ||
<ul> | <ul> | ||
+ | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook" title="Overview">Overview</a></li> | ||
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook/blog" title="Blog">Blog</a></li> | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook/blog" title="Blog">Blog</a></li> | ||
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook/timeline" title="Timeline">Timeline</a></li> | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook/timeline" title="Timeline">Timeline</a></li> | ||
Line 597: | Line 693: | ||
<li><a class="menubutton" id="parts" href="https://2010.igem.org/Team:TU_Delft#page=Parts" title="Parts">Parts</a> | <li><a class="menubutton" id="parts" href="https://2010.igem.org/Team:TU_Delft#page=Parts" title="Parts">Parts</a> | ||
<ul> | <ul> | ||
+ | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Parts" title="Overview">Overview</a></li> | ||
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Parts/biobricks" title="BioBricks">BioBricks</a></li> | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Parts/biobricks" title="BioBricks">BioBricks</a></li> | ||
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Parts/characterization" title="Characterization">Characterization</a></li> | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Parts/characterization" title="Characterization">Characterization</a></li> | ||
Line 603: | Line 700: | ||
<li><a class="menubutton" id="insilico" href="https://2010.igem.org/Team:TU_Delft#page=Modeling" title="In Silico">In Silico</a> | <li><a class="menubutton" id="insilico" href="https://2010.igem.org/Team:TU_Delft#page=Modeling" title="In Silico">In Silico</a> | ||
<ul> | <ul> | ||
+ | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling" title="Overview">Overview</a></li> | ||
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/MFA" title="MFA">MFA</a></li> | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/MFA" title="MFA">MFA</a></li> | ||
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/HC_regulation" title="Hydrocarbon Regulation">Hydrocarbon Regulation</a></li> | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/HC_regulation" title="Hydrocarbon Regulation">Hydrocarbon Regulation</a></li> | ||
+ | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/Protein-production-model" title="Protein Production Model">Protein Production Model</a></li> | ||
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/interaction-mapping" title="Software Tool">Interaction Mapping</a></li> | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/interaction-mapping" title="Software Tool">Interaction Mapping</a></li> | ||
+ | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Software/part-search" title="Part search server & iPhone app">Part search server & iPhone app</a></li> | ||
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/wiki-tips-tricks" title="Wiki tips & tricks">Wiki Tips & Tricks</a></li> | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/wiki-tips-tricks" title="Wiki tips & tricks">Wiki Tips & Tricks</a></li> | ||
</ul> | </ul> | ||
Line 611: | Line 711: | ||
<li><a class="menubutton" id="safety" href="https://2010.igem.org/Team:TU_Delft#page=Safety" title="Safety">Safety</a> | <li><a class="menubutton" id="safety" href="https://2010.igem.org/Team:TU_Delft#page=Safety" title="Safety">Safety</a> | ||
<ul> | <ul> | ||
- | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Safety" title="Overview">Overview</a></li> | |
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Safety/in-the-lab" title="Biosafety">Biosafety in the lab</a></li> | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Safety/in-the-lab" title="Biosafety">Biosafety in the lab</a></li> | ||
- | <li><a href="https://2010.igem.org/Team:TU_Delft#page= | + | </ul> |
+ | </li> | ||
+ | <li><a class="menubutton" id="humanpractice" href="https://2010.igem.org/Team:TU_Delft#page=Human-practice" title="Human Practice">Human Practice</a> | ||
+ | <ul> | ||
+ | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Human-practice" title="Overview">Overview</a></li> | ||
+ | <li><a href="https://2010.igem.org/Team:TU_Delft#page=EPAC" title="EPAC">EPAC</a></li> | ||
+ | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Education" title="Education">Education</a></li> | ||
+ | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Perception" title="Perception">Perception</a></li> | ||
+ | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Awareness" title="Awareness">Awareness</a></li> | ||
</ul> | </ul> | ||
</li> | </li> | ||
<li><a class="menubutton" id="education" href="https://2010.igem.org/Team:TU_Delft#page=Education" title="Education">Education</a> | <li><a class="menubutton" id="education" href="https://2010.igem.org/Team:TU_Delft#page=Education" title="Education">Education</a> | ||
<ul> | <ul> | ||
- | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Education | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Education" title="Overview">Overview</a></li> |
- | + | ||
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Education/science-museum" title="Science Museum">Science Museum</a></li> | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Education/science-museum" title="Science Museum">Science Museum</a></li> | ||
+ | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Education/game" title="Game">iGEM Game</a></li> | ||
+ | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Education/Workshop_on_synthetic_biology" title="SynBio Workshop">SynBio Workshop</a></li> | ||
+ | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Education/nemo" title="Night of the Nerds">Night of the Nerds</a></li> | ||
</ul> | </ul> | ||
</li> | </li> | ||
<li><a class="menubutton" id="publicity" href="https://2010.igem.org/Team:TU_Delft#page=Publicity" title="Publicity">Publicity</a> | <li><a class="menubutton" id="publicity" href="https://2010.igem.org/Team:TU_Delft#page=Publicity" title="Publicity">Publicity</a> | ||
<ul> | <ul> | ||
- | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Publicity | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Publicity" title="Overview">Overview</a></li> |
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Publicity/communication_plan" title="Communication Plan">Communication Plan</a></li> | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Publicity/communication_plan" title="Communication Plan">Communication Plan</a></li> | ||
- | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Publicity/articles" title="Articles">Articles</a></li> | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Publicity/in-the-news" title="In The News">In the Media</a></li> |
+ | <!-- <li><a href="https://2010.igem.org/Team:TU_Delft#page=Publicity/articles" title="Articles">Articles</a></li> /--> | ||
</ul> | </ul> | ||
</li> | </li> | ||
<li><a class="menubutton" id="collaboration" href="https://2010.igem.org/Team:TU_Delft#page=Collaboration" title="Collaboration">Collaboration</a> | <li><a class="menubutton" id="collaboration" href="https://2010.igem.org/Team:TU_Delft#page=Collaboration" title="Collaboration">Collaboration</a> | ||
<ul> | <ul> | ||
+ | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Collaboration" title="Overview">Overview</a></li> | ||
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Collaboration/sponsors" title="Sponsors">Sponsors</a></li> | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Collaboration/sponsors" title="Sponsors">Sponsors</a></li> | ||
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Collaboration/igem-teams" title="iGEM Teams">iGEM Teams</a></li> | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Collaboration/igem-teams" title="iGEM Teams">iGEM Teams</a></li> | ||
Line 645: | Line 757: | ||
<div id="TUD-body-content"> | <div id="TUD-body-content"> | ||
<div id="TUD-main-content"> | <div id="TUD-main-content"> | ||
+ | <div id="loading-overlay"></div> | ||
<div id="breadcrumbs"></div> | <div id="breadcrumbs"></div> | ||
<div id="iGEM_TU_Delft_container"> | <div id="iGEM_TU_Delft_container"> | ||
</div> | </div> | ||
- | |||
- | |||
</div> | </div> | ||
</div> | </div> |