Line 1: | Line 1: | ||
− | {{Alverno_CA}} | + | {{:Team:Alverno_CA/attributionsheader}} |
<html> | <html> | ||
+ | <body> | ||
+ | <div id=""page-content-wrapper""><script src="//code.jquery.com/jquery-1.11.0.min.js"></script> | ||
+ | |||
+ | |||
+ | |||
+ | </article> | ||
+ | </div> | ||
<br></br> | <br></br> | ||
Line 21: | Line 28: | ||
<h5><b><a href="http://abe-la.org/index.html">Amgen Biotechnology Experience and Pasadena Bioscience Collaborative</a></b> for the loan of equipment and supplies. Particularly Dr. Wendie Johnston and Grace Montgomery for providing education, and acting as an amazing model of how to encourage the growth and development of science education.</h5> | <h5><b><a href="http://abe-la.org/index.html">Amgen Biotechnology Experience and Pasadena Bioscience Collaborative</a></b> for the loan of equipment and supplies. Particularly Dr. Wendie Johnston and Grace Montgomery for providing education, and acting as an amazing model of how to encourage the growth and development of science education.</h5> | ||
− | <h5><b><a href="https://csa.caltech.edu">The Community Science Academy at Caltech</a></b>, Dr. Julius Su and James Maloney for their inspiring approach to science education, for generous loans of equipment, and general awesomeness.</h5> | + | <h5><b><a href="https://csa.caltech.edu">The Community Science Academy at Caltech</a></b>, Dr. Julius Su, and James Maloney for their inspiring approach to science education, for generous loans of equipment, and general awesomeness.</h5> |
− | <h5><b><a href="http://store.biobasic.com/">Bio Basic Inc.</a></b> for sequencing support, discounts, and technical advice.</h5> | + | <h5><b><a href="http://store.biobasic.com/">Bio Basic Inc.</a></b>for sequencing support, discounts, and technical advice.</h5> |
− | <h5><b><a href="https://www.idtdna.com/site">Integrated DNA Technologies (IDT)</a></b> for free DNA and discounts.</h5> | + | <h5><b><a href="https://www.idtdna.com/site">Integrated DNA Technologies (IDT)</a></b>for free DNA and discounts.</h5> |
<h5><b><a href="http://www.genscript.com/GenScript-Announces-Winners-of-iGEM-CRISPR-Cas9-Grant.html">GenScript USA Inc.</a></b> for their generous financial support in awarding us the Gold Medal iGEM CRISPR/Cas9 Grant. Our research would not have been possible without it.</h5> | <h5><b><a href="http://www.genscript.com/GenScript-Announces-Winners-of-iGEM-CRISPR-Cas9-Grant.html">GenScript USA Inc.</a></b> for their generous financial support in awarding us the Gold Medal iGEM CRISPR/Cas9 Grant. Our research would not have been possible without it.</h5> | ||
Line 37: | Line 44: | ||
<h5><b><a href="http://www.alvernoheightsacademy.org">Alverno Heights Academy</a></b> for generous financial and emotional support, and for always being our cheerleaders!</h5> | <h5><b><a href="http://www.alvernoheightsacademy.org">Alverno Heights Academy</a></b> for generous financial and emotional support, and for always being our cheerleaders!</h5> | ||
− | |||
− | |||
</body> | </body> | ||
+ | <script> | ||
+ | $(document).ready(function() { | ||
+ | |||
+ | if(location.pathname != "/Team:Aalto-Helsinki") { | ||
+ | $('#navigation a[href^="https://2014.igem.org' + location.pathname + '"]').addClass('active'); | ||
+ | } else $('#navigation a.home').addClass('active'); | ||
+ | }); | ||
+ | </script> | ||
+ | <script type="text/javascript"> | ||
+ | // Picture reference script | ||
+ | /* | ||
+ | USAGE: | ||
+ | tag img with a ref that is connected to the image, such as: | ||
+ | <img src="aaltohelsinki.com/testikuva.png" ref="varioskan" /> | ||
+ | When you insert a reference in text, put a tag with a ref attribute: | ||
+ | <a ref="varioskan"></a> | ||
+ | Do not put href attribute, it will be replaced with a link to the image. | ||
+ | Moreover, inner html of the anchor tag will be "figure x" where x is the | ||
+ | correct figure number. If span or anchor has "." as the inner html, the | ||
+ | caption will be capitalized. | ||
+ | */ | ||
+ | var images = $('img[ref]'); | ||
+ | $.each(images, function(index, e){ | ||
+ | var referenceName = e.getAttribute("ref"); | ||
+ | if (!e.id){ | ||
+ | e.setAttribute("id","figure"+(index+1)); | ||
+ | } | ||
+ | $.each($('a[ref="'+referenceName+'"]'), function(j, e2){ | ||
+ | e2.setAttribute("href","#"+e.id); | ||
+ | if (e2.innerHTML == "."){ | ||
+ | e2.innerHTML = "Figure " + (index+1); | ||
+ | } else { | ||
+ | e2.innerHTML = "figure " + (index+1); | ||
+ | } | ||
+ | }); | ||
+ | $.each($('span[ref="'+referenceName+'"]'), function(j, e2){ | ||
+ | e2.setAttribute("href","#"+e.id); | ||
+ | if (e2.innerHTML == "."){ | ||
+ | e2.innerHTML = "Figure " + (index+1); | ||
+ | } else { | ||
+ | e2.innerHTML = "figure " + (index+1); | ||
+ | } | ||
+ | }); | ||
+ | } | ||
+ | ); | ||
+ | |||
+ | // Table reference script | ||
+ | /* | ||
+ | USAGE: | ||
+ | tag table with a tab that is connected to the table, such as: | ||
+ | <table ref="intensities" /> | ||
+ | When you insert a reference in text, put a tag with a ref attribute: | ||
+ | <a tab="intensities"></a> | ||
+ | Do not put href attribute, it will be replaced with a link to the image. | ||
+ | Moreover, inner html of the anchor tag will be "table x" where x is the | ||
+ | correct table number. If span or anchor has "." as the inner html, the | ||
+ | caption will be capitalized. | ||
+ | */ | ||
+ | var tables = $('table[tab], img[tab]'); | ||
+ | $.each(tables, function(index, e){ | ||
+ | var tableName = e.getAttribute("tab"); | ||
+ | if (!e.id){ | ||
+ | e.setAttribute("id","table"+(index+1)); | ||
+ | } | ||
+ | $.each($('a[tab="'+tableName+'"]'), function(j, e2){ | ||
+ | e2.setAttribute("href","#"+e.id); | ||
+ | if (e2.innerHTML == "."){ | ||
+ | e2.innerHTML = "Table " + (index+1); | ||
+ | } else { | ||
+ | e2.innerHTML = "table " + (index+1); | ||
+ | } | ||
+ | }); | ||
+ | $.each($('span[tab="'+tableName+'"]'), function(j, e2){ | ||
+ | e2.setAttribute("href","#"+e.id); | ||
+ | if (e2.innerHTML == "."){ | ||
+ | e2.innerHTML = "Table " + (index+1); | ||
+ | } else { | ||
+ | e2.innerHTML = "table " + (index+1); | ||
+ | } | ||
+ | }); | ||
+ | } | ||
+ | ); | ||
+ | </script> | ||
</html> | </html> | ||
+ | {{:Team:Alverno_CA/attributionsfooter}} |
Revision as of 00:31, 20 October 2016