Team:TU Delft/test
From 2010.igem.org
(Difference between revisions)
(48 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 42: | Line 41: | ||
var currentPage; | var currentPage; | ||
var in_frame_test = 1; | var in_frame_test = 1; | ||
+ | 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 70: | Line 91: | ||
function splitHash(hash) { | function splitHash(hash) { | ||
- | var kvpairs = hash.split( | + | var kvpairs = hash.split(ampersandStr); |
var i; | var i; | ||
var kvmap = {}; | var kvmap = {}; | ||
Line 85: | Line 106: | ||
if (kvmap) { | if (kvmap) { | ||
for(i in kvmap) { | for(i in kvmap) { | ||
- | str += | + | str += ampersandStr + i + '=' + kvmap[i]; |
} | } | ||
} | } | ||
Line 92: | Line 113: | ||
function setHash(page, kvmap) { | function setHash(page, kvmap) { | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
location.hash = makeHash(page,kvmap); | location.hash = makeHash(page,kvmap); | ||
} | } | ||
Line 107: | 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 127: | 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 138: | 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 148: | 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 163: | 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 171: | Line 212: | ||
} | } | ||
} | } | ||
- | |||
function rewriteLinks(elem) { | function rewriteLinks(elem) { | ||
Line 178: | 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 197: | 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 225: | Line 270: | ||
<script language="javascript" type="text/javascript"> | <script language="javascript" type="text/javascript"> | ||
- | + | function capitaliseFirstLetter(string) | |
+ | { | ||
+ | return string.charAt(0).toUpperCase() + string.slice(1); | ||
+ | } | ||
+ | |||
+ | function buildDepth(array,count) | ||
+ | { | ||
+ | var depthStr=""; | ||
+ | for (i=0;i<count;i++) | ||
+ | { | ||
+ | depthStr=depthStr + array[i] + "/" ; | ||
+ | } | ||
+ | return depthStr; | ||
+ | } | ||
+ | function buildBreadCrumbTrail(page) | ||
+ | { | ||
+ | var constituentFolders = new Array(); | ||
+ | var currentURL = page; | ||
+ | constituentFolders=currentURL.split("/"); | ||
+ | var outputStr="<a href='https://2010.igem.org/Team:TU_Delft#page=Home'>Home</a>"; | ||
+ | if(page != "Home") { | ||
+ | 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>"; | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | $("#breadcrumbs").html(outputStr); | ||
+ | } | ||
</script> | </script> | ||
<!-- Scripting END /--> | <!-- Scripting END /--> | ||
Line 269: | Line 346: | ||
#contentSub {display: none;} | #contentSub {display: none;} | ||
p:first-child { display: none;} | p:first-child { display: none;} | ||
- | + | 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 293: | Line 389: | ||
font-size: 12px; | font-size: 12px; | ||
color: #222222; | color: #222222; | ||
+ | min-width: 1050px; | ||
} | } | ||
Line 340: | Line 437: | ||
height: auto; | height: auto; | ||
min-height: 100%; | min-height: 100%; | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
} | } | ||
Line 413: | Line 494: | ||
} | } | ||
- | #iGEM_TU_Delft_container { | + | #iGEM_TU_Delft_container { |
- | min-height: 400px; | + | min-height: 400px; |
- | } | + | } |
#TUD-footer { | #TUD-footer { | ||
Line 426: | Line 507: | ||
margin: 0; | margin: 0; | ||
padding: 0; | padding: 0; | ||
+ | display: block; | ||
+ | float: left; | ||
} | } | ||
Line 439: | Line 522: | ||
.TUD-logo span { | .TUD-logo span { | ||
visibility: hidden; | visibility: hidden; | ||
+ | } | ||
+ | |||
+ | |||
+ | #TUD-loading-panel { | ||
+ | z-index: 100; | ||
+ | position: absolute; | ||
+ | left: 0px; | ||
+ | top: 0px; | ||
+ | width: 100%; | ||
+ | height: 100%; | ||
+ | display:none; | ||
+ | } | ||
+ | |||
+ | #TUD-loading-panel-logo { | ||
+ | margin: 0 auto; | ||
+ | margin-top: 250px; | ||
+ | } | ||
+ | |||
+ | #loading-overlay { | ||
+ | z-index: 70; | ||
+ | width: 100%; | ||
+ | height: 100%; | ||
+ | display:none; | ||
+ | opacity:0.4; | ||
+ | filter:alpha(opacity=40); | ||
+ | } | ||
+ | |||
+ | #back_to_igem { | ||
+ | margin: 15px 0 0 0; | ||
+ | padding:0; | ||
+ | float: right; | ||
} | } | ||
Line 466: | 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 519: | Line 633: | ||
<div id="TUD-loading-panel"> | <div id="TUD-loading-panel"> | ||
<div id="TUD-loading-panel-logo"> | <div id="TUD-loading-panel-logo"> | ||
- | <img src="https://static.igem.org/mediawiki/2010/d/d8/TUDelft_2010_AlkanivoreAnimated.gif"></ | + | <!-- yes im using center --> |
- | </div> | + | <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> | ||
Line 528: | 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> | ||
</div> | </div> | ||
<div id="TUD-menu"> | <div id="TUD-menu"> | ||
<ul id="navlist"> | <ul id="navlist"> | ||
- | <li><a class="menubutton" id="home" href="Home" title="Home"><span>Home</span></a></li> | + | <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="Team" title="Team"><span>Team</span></a> | + | <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="Team/members" title="Members">Members</a></li> | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Team" title="Overview">Overview</a></li> |
- | <li><a href="Team/university" title="University">University</a></li> | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/members" title="Members">Members</a></li> |
- | <li><a href="Team/previous-teams" title="Previous Teams">Previous Teams</a></li> | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/organization" title="Organization">Organization</a></li> |
- | <li><a href="Team/gallery" title="Gallery">Gallery</a></li> | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/university" title="University">University</a></li> |
- | <li><a href="Team/ijam" title="iJAM">iJAM</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/gallery" title="Picture Gallery">Picture Gallery</a></li> | ||
+ | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/movies" title="Movies">Movies</a></li> | ||
+ | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/ijam" title="iJAM">iJAM</a></li> | ||
</ul> | </ul> | ||
</li> | </li> | ||
- | <li><a class="menubutton" id="project" href="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=" | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Project" title="Overview">Overview</a></li> |
- | <li><a href="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="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="Project/ | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/sensing" title="Hydrocarbon Sensing">Sensing</a></li> |
- | <li><a href="Project/ | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/tolerance" title="Survival">Survival</a></li> |
- | <li><a href="Project/ | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/solubility" title="Emulsification">Solubility</a></li> |
- | <li><a href="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="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> |
- | <li><a href="Project/references" title="References">References</a></li> | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/references" title="References">References</a></li> |
</ul> | </ul> | ||
</li> | </li> | ||
- | <li><a class="menubutton" id="insilico" href="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=" | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook" title="Overview">Overview</a></li> |
- | <li><a href="Notebook/timeline" title="Timeline">Timeline</a></li> | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook/blog" title="Blog">Blog</a></li> |
- | <li><a href="Notebook/brainstorm" title="Brainstorm">Brainstorm</a></li> | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook/timeline" title="Timeline">Timeline</a></li> |
- | <li><a href="Notebook/cloning-plan" title="Cloning Plan">Cloning Plan</a></li> | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook/brainstorm" title="Brainstorm">Brainstorm</a></li> |
- | <li><a href="Notebook/protocols" title="Protocols">Protocols</a></li> | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook/cloning-plan" title="Cloning Plan">Cloning Plan</a></li> |
+ | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook/protocols" title="Protocols">Protocols</a></li> | ||
</ul> | </ul> | ||
</li> | </li> | ||
- | <li><a class="menubutton" id="parts" href="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="Parts/biobricks" title="BioBricks">BioBricks</a></li> | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Parts" title="Overview">Overview</a></li> |
- | <li><a href="Parts/characterization" title="Characterization">Characterization</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> | ||
</ul> | </ul> | ||
</li> | </li> | ||
- | <li><a class="menubutton" id="insilico" href="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="Modeling/MFA" title="MFA">MFA</a></li> | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling" title="Overview">Overview</a></li> |
- | <li><a href="Modeling/HC_regulation" title="Hydrocarbon Regulation">Hydrocarbon Regulation</a></li> | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/MFA" title="MFA">MFA</a></li> |
- | <li><a href="Modeling/interaction-mapping" title="Software Tool">Interaction Mapping</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="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/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=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> | ||
</ul> | </ul> | ||
</li> | </li> | ||
- | <li><a class="menubutton" id="safety" href="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=" | + | <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="Safety/ | + | |
</ul> | </ul> | ||
</li> | </li> | ||
- | <li><a class="menubutton" id=" | + | <li><a class="menubutton" id="humanpractice" href="https://2010.igem.org/Team:TU_Delft#page=Human-practice" title="Human Practice">Human Practice</a> |
<ul> | <ul> | ||
- | <li><a href=" | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Human-practice" title="Overview">Overview</a></li> |
- | <li><a href=" | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=EPAC" title="EPAC">EPAC</a></li> |
- | <li><a href="Education/ | + | <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=" | + | <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=" | + | <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=" | + | <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=" | + | <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=" | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Publicity" title="Overview">Overview</a></li> |
- | <li><a href=" | + | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Publicity/communication_plan" title="Communication Plan">Communication Plan</a></li> |
- | <li><a href=" | + | <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="Contact" title="Contact">Contact</a></li> | + | <li><a class="menubutton" id="collaboration" href="https://2010.igem.org/Team:TU_Delft#page=Collaboration" title="Collaboration">Collaboration</a> |
+ | <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/igem-teams" title="iGEM Teams">iGEM Teams</a></li> | ||
+ | <li><a href="https://2010.igem.org/Team:TU_Delft#page=Collaboration/acknowledgements" title="Acknowledgements">Acknowledgements</a></li> | ||
+ | </ul> | ||
+ | </li> | ||
+ | <li><a class="menubutton" id="collaboration" href="https://2010.igem.org/Team:TU_Delft#page=Contact" title="Contact">Contact</a></li> | ||
</ul> | </ul> | ||
</div> | </div> | ||
Line 616: | 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> | ||
Line 634: | Line 774: | ||
Nine students spent their summer in the lab, having fun with digesting, ligating and transforming BioBricks. This wiki is all about the plans, the work and the results. If you can't find what you need, please contact us! | Nine students spent their summer in the lab, having fun with digesting, ligating and transforming BioBricks. This wiki is all about the plans, the work and the results. If you can't find what you need, please contact us! | ||
<div class="br"></div> | <div class="br"></div> | ||
- | <a href=" | + | <a href="Team">Meet the team</a> |
<br /> | <br /> | ||
<a href="#top">Back to top</a> | <a href="#top">Back to top</a> | ||
Line 664: | Line 804: | ||
<div class="br"></div> | <div class="br"></div> | ||
<ul> | <ul> | ||
- | <li><a href=" | + | <li><a href="/Team:TU_Delft#page=Home">Home</a></li> |
- | <li><a href=" | + | <li><a href="/Team:TU_Delft#page=Team">Team</a></li> |
- | <li><a href=" | + | <li><a href="/Team:TU_Delft#page=Project">Project</a></li> |
- | <li><a href=" | + | <li><a href="/Team:TU_Delft#page=Notebook/blog">Blog</a></li> |
- | <li><a href=" | + | <li><a href="/Team:TU_Delft#page=Parts">Parts</a></li> |
- | <li><a href=" | + | <li><a href="/Team:TU_Delft#page=Modeling">In Silico</a></li> |
- | <li><a href=" | + | <li><a href="/Team:TU_Delft#page=Safety">Safety</a></li> |
- | <li><a href=" | + | <li><a href="/Team:TU_Delft#page=Education">Education</a></li> |
- | <li><a href=" | + | <li><a href="/Team:TU_Delft#page=Publicity">Publicity</a></li> |
- | <li><a href=" | + | <li><a href="/Team:TU_Delft#page=Collaboration">Collaboration</a></li> |
- | <li><a href=" | + | <li><a href="/Team:TU_Delft#page=Contact">Contact</a></li> |
</ul> | </ul> | ||
</div> | </div> | ||
Line 855: | Line 995: | ||
</div> | </div> | ||
</div> | </div> | ||
- | <script | + | <script type="text/javascript"> |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | / | + | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | var _gaq = _gaq || []; | |
+ | _gaq.push(['_setAccount', 'UA-16783722-1']); | ||
+ | _gaq.push(['_trackPageview']); | ||
- | // | + | (function() { |
+ | var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; | ||
+ | ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; | ||
+ | var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); | ||
+ | })(); | ||
</script> | </script> | ||
</html> | </html> |