Team:UNC-Chapel Hill

From 2014.igem.org

(Difference between revisions)
(Prototype team page)
 
(53 intermediate revisions not shown)
Line 1: Line 1:
-
{{CSS/Main}}
+
{{:Team:UNC-Chapel_Hill/practicemenu}}
-
 
+
-
 
+
<html>
<html>
-
<!--main content -->
+
<!-- First block of content -->
-
<table width="70%" align="center">
+
 +
<!-- end of first block -->
-
<!--welcome box -->
+
<head>
-
<tr>
+
<link href="https://2014.igem.org/Team:UNC-Chapel_Hill/StyleSheets/HomePage?action=raw&ctype=text/css" rel="stylesheet">
-
<td style="border:1px solid black;" colspan="3" align="center" height="150px" bgColor=#FF404B>
+
<script>
-
<h1 >WELCOME TO iGEM 2014! </h1>
+
$(document).ready(function() {
-
<p>Your team has been approved and you are ready to start the iGEM season!
+
//Display slider for Javascript users
-
<br>On this page you can document your project, introduce your team members, document your progress <br> and share your iGEM experience with the rest of the world! </p>
+
$('#Slider').css('display', 'block');
-
<br>
+
-
<p style="color:#E7E7E7"> <a href="https://2014.igem.org/wiki/index.php?title=Team:UNC-Chapel_Hill&action=edit"style="color:#FFFFFF"> Click here  to edit this page!</a> </p>
+
//Set height of slider (16/5 ratio)
-
</td>
+
$('#Slider').css('height', ($('body').width() / 3.2));
-
</tr>
+
 +
//Position right/left arrows
 +
var BarHeight = $('#Slider').height() -  $('#BottomLinks').height();
 +
$('#LeftBar, #RightBar').css('height', BarHeight);
 +
$('#LeftArrow, #RightArrow').css('top', (BarHeight-60)/2);
-
<tr> <td colspan="3" height="5px"> </td></tr>
+
//Repeats for window resize
-
<!-- end welcome box -->
+
$(window).resize(function() {
-
<tr>
+
$('#Slider').css('height', ($('body').width() / 3.2));
 +
 +
var BarHeight = $('#Slider').height() - $('#BottomLinks').height();
 +
$('#LeftBar, #RightBar').css('height', BarHeight);
 +
$('#LeftArrow, #RightArrow').css('top', (BarHeight-60)/2);
 +
});
 +
 +
var TotalSlides = $('.Slides').length;
 +
var CurrentSlide = 0;
-
<!--navigation menu -->
+
$('#RightArrow').click(function() {
-
<td align="center" colspan="3">
+
CurrentSlide = ++CurrentSlide % TotalSlides;
 +
changeSlide(CurrentSlide);
 +
});
 +
 +
$('#LeftArrow').click(function() {
 +
CurrentSlide = (CurrentSlide + TotalSlides - 1) % TotalSlides;
 +
changeSlide(CurrentSlide);
 +
});
 +
 +
$('.SlideLink').click(function() {
 +
var ClickedSlide = $(this).attr('id');
 +
CurrentSlide = parseInt(ClickedSlide.replace('Link', ''));
 +
changeSlide(CurrentSlide);
 +
});
 +
 +
function changeSlide(num){
 +
var SlideID = '#Slide' + num;
 +
$('.Slides').css('display', 'none');
 +
$(SlideID).css('display', 'block');
 +
}
 +
});
 +
</script>
 +
</head>
 +
 +
<body>
 +
<section id="HomePageContent">
 +
<div id="Slider">
 +
<div id="Slide0" class="Slides current"></div>
 +
<div id="Slide1" class="Slides"></div>
 +
<div id="Slide2" class="Slides"></div>
 +
<div id="Slide3" class="Slides"></div>
 +
<div id="Slide4" class="Slides"></div>
 +
<div id="Slide5" class="Slides"></div>
 +
<div id="LeftBar" class="SideBar"><div id="LeftArrow"></div></div>
 +
<div id="RightBar" class="SideBar"><div id="RightArrow"></div></div>
 +
<ul id="BottomLinks">
 +
<li id="Link0" class="SlideLink">Background</li><li id="Link1" class="SlideLink">Problem</li><li id="Link2" class="SlideLink">Tools</li><li id="Link3" class="SlideLink">Inspiration</li><li id="Link4" class="SlideLink">Solution</li><li id="Link5" class="SlideLink">Impact</li>
 +
</ul>
 +
</div>
-
<table  width="100%">
 
-
<tr heigth="15px"></tr>
 
-
<tr heigth="75px">
 
 +
<!--  Block of content 1 -->
 +
<table width="100%"  cellspacing="0" height="500px">
 +
<tr><td  bgColor="#f2f7fc"></td>
 +
<td width="975px" align="center" bgColor="#f2f7fc" >
 +
<table  width="975px"  cellspacing="0" height="500px">
 +
<tr>
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>  
+
<td width="95%" bgColor="#f2f7fcrowspan="3" align="center">  
-
<a href="https://2014.igem.org/Team:UNC-Chapel_Hill"style="color:#000000">Home </a> </td>
+
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>
+
<!-- Content goes here -->
-
<a href="https://2014.igem.org/Team:UNC-Chapel_Hill/Team"style="color:#000000"> Team </a> </td>
+
-
<td style="border:1px solid black;" align="center"  height ="45px"  onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>
 
-
<a href="https://igem.org/Team.cgi?year=2014&team_name=UNC-Chapel_Hill"style="color:#000000"> Official Team Profile </a></td>
 
-
<td style="border:1px solid black" align="center"  height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>
+
<h3 style="color:#56A0D3;">Diabetes Mellitus</h3>
-
<a href="https://2014.igem.org/Team:UNC-Chapel_Hill/Project"style="color:#000000"> Project</a></td>
+
<p>Diabetes mellitus is prevalent throughout the world especially in the United States and Mexico. Current methods of treatments have largely remained the same. Patients prick their fingers to draw blood in order for a device to report their blood glucose levels. After the device gives them that information, they administer the appropriate amount of insulin to themselves. There has yet to be a unified system for the sensing of blood glucose levels and insulin administration. As a solution, we propose the following:</p>
 +
<p style="color:#56A0D3;">The UNC Chapel Hill team has devised a protein controlled system in which E coli detects high glucose levels in its environment, and in response release one of two proteins, insulin or glucagon-like peptide-1 <br><font color="black">(Find out more at our <a href="https://2014.igem.org/Team:UNC-Chapel_Hill/Project#background">project page</a>)</font> </p>
 +
</td>
-
<td style="border:1px solid black;" align="center"  height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>
 
-
<a href="https://2014.igem.org/Team:UNC-Chapel_Hill/Parts"style="color:#000000"> Parts</a></td>
 
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>
 
-
<a href="https://2014.igem.org/Team:UNC-Chapel_Hill/Modeling"style="color:#000000"> Modeling</a></td>
 
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7> 
 
-
<a href="https://2014.igem.org/Team:UNC-Chapel_Hill/Notebook"style="color:#000000"> Notebook</a></td>
 
-
<td style="border:1px solid black;" align="center"  height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>
+
</table>
-
<a href="https://2014.igem.org/Team:UNC-Chapel_Hill/Safety"style=" color:#000000"> Safety </a></td>
+
-
<td style="border:1px solid black;" align="center"  height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>
 
-
<a href="https://2014.igem.org/Team:UNC-Chapel_Hill/Attributions"style="color:#000000"> Attributions </a></td>
 
-
 
+
</td>
-
<td align ="center"> <a href="https://2014.igem.org/Main_Page"> <img src="https://static.igem.org/mediawiki/igem.org/6/60/Igemlogo_300px.png" width="55px"></a> </td>
+
<td bgColor="#f2f7fc"></td>
</tr>
</tr>
</table>
</table>
 +
<!-- end of Block-->
-
<!--end navigation menu -->
 
-
</tr>
 
-
</tr>
+
<!-- Block of content 4 -->
-
   
+
<table width="100%cellspacing="0" height="500px">
-
 
+
<tr>
-
 
+
<td bgColor="#c9def2"></td>
-
 
+
<td width="975px" align="center" bgColor="#c9def2" >
-
 
+
-
</td>
+
-
 
+
-
<tr> <td colspan="3"  height="15px"> </td></tr>
+
-
<tr><td bgColor="#e7e7e7" colspan="3" height="1px"> </tr>
+
-
<tr> <td colspan="3" height="5px"> </td></tr>
+
-
 
+
-
<!--requirements section -->
+
<table  width="975px"  cellspacing="0" height="500px">
-
<tr><td colspan="3"> <h3> Requirements </h3></td></tr>
+
<tr>
<tr>
-
<td width="45%"  valign="top">  
+
<td width="95%" bgColor="#c9def2rowspan="3" align="center">
 +
<!-- Content goes here -->
-
<p> Please be sure to keep these links, your audience will want to find your: </p>
+
<h3 style="color:#56A0D3;">Why did we choose this project?</h3>
 +
<p>In the National Diabetes Statistics Report of 2014 released by the National Center for Chronic Disease Prevention and Health Promotion it was reported that 29.1 million Americans (9.3% of the US population) have diabetes mellitus. The cost both direct and indirect of diabetes treatment is estimated to be 245 billion dollars, and the disease remains the 7th leading cause of premature death in the United States. With the prevalence of diabetes mellitus in the US population the 2014 UNC Chapel Hill iGEM team as part of a University that prides itself in serving "North Carolina, the United States, and the world through teaching, research, and public service" felt an obligation to address this problem</p>
-
<!-- Links to other team pages -->
+
</td>
-
<ul>
+
-
<li><a href="https://2014.igem.org/Team:UNC-Chapel_Hill">Home</a> </li>
+
-
<li><a href="https://2014.igem.org/Team:UNC-Chapel_Hill/Team">Team</a> </li>
+
-
<li><a href="https://igem.org/Team.cgi?year=2013&team_name=UNC-Chapel_Hill">Official Team Profile</a> </li>
+
-
<li><a href="https://2014.igem.org/Team:UNC-Chapel_Hill/Project">Project</a> </li>
+
-
<li><a href="https://2014.igem.org/Team:UNC-Chapel_Hill/Parts">Parts</a> </li>
+
-
<li><a href="https://2014.igem.org/Team:UNC-Chapel_Hill/Modeling">Modeling</a> </li>
+
-
<li><a href="https://2014.igem.org/Team:UNC-Chapel_Hill/Notebook">Notebook</a> </li>
+
-
<li><a href="https://2014.igem.org/Team:UNC-Chapel_Hill/Safety">Safety</a> </li>
+
-
<li><a href="https://2014.igem.org/Team:UNC-Chapel_Hill/Attributions">Attributions</a> </li>
+
-
</ul>
 
-
</td>
 
-
<td > </td>
 
-
<td width="45%">
 
-
 
-
<p>There are a few wiki requirements teams must follow:</p>
 
-
<ul>
 
-
<li>All pages, images and files must be hosted on the <a href ="https://2014.igem.org/Special:Upload">  2014.igem.org server</a>. </li>
 
-
<li>All pages must be created under the team’s name space.</li>
 
-
<li>As part of your documentation, keep the links from the menu to the left. </li>
 
-
<li>Do not use flash in wiki code. </li>
 
-
<li>The <a href="https://static.igem.org/mediawiki/igem.org/6/60/Igemlogo_300px.png"> iGEM logo </a> should be placed on the upper part of every page and should link to <a href="https://2014.igem.org/Main_Page">2014.igem.org</a>.</li>
 
-
</ul>
 
-
<p>Visit the <a href="https://2014.igem.org/Wiki_How-To"> Wiki How To page </a> for a complete list of requirements, tips and other useful information. </p>
 
 +
</table>
</td>
</td>
 +
<td bgColor="#c9def2"></td>
</tr>
</tr>
 +
</table>
 +
<!-- end of Block-->
-
<tr> <td colspan="3"  height="15px"> </td></tr>
 
-
<tr><td bgColor="#e7e7e7" colspan="3" height="1"> </tr>
 
-
 
-
 
-
<!--tips  -->
 
-
<tr><td colspan="3" > <h3> Tips  </h3></td></tr>
 
 +
<!-- Final block of content -->
 +
<table  id="firstblock" width="100%"  cellspacing="0" height="200px">
<tr>
<tr>
-
<td width="45%" valign="top">  
+
<td bgColor="#FFFFFF"></td>
-
<p>We are currently working on providing teams with some easy to use design templates.
+
<td width="975px" align="center" bgColor="#FFFFFF" >
-
<br> In the meantime you can also view other team wikis for inspiration! Here are some very good examples</p>
+
-
<ul>
+
<p>Here you can place the logos of your sponsors or other links!</p>
-
<li> <a href="https://2013.igem.org/Team:SDU-Denmark/"> 2013 SDU Denmark </a> </li>
+
-
<li> <a href="https://2013.igem.org/Team:SYSU-China">2013 SYSU China</a> </li>
+
-
<li> <a href="https://2013.igem.org/Team:Shenzhen_BGIC_ATCG"> 2013 Shenxhen BGIG ATCG </a></li>
+
-
<li> <a href="https://2013.igem.org/Team:Colombia_Uniandes">2013 Colombia Unianades </a></li>
+
-
<li> <a href="https://2013.igem.org/Team:Lethbridge">2013 Lethbridge</a></li>
+
-
</ul>
+
-
<p>For a full wiki list, you can visit <a href="https://igem.org/Team_Wikis?year=2013">iGEM 2013 web sites </a> and <a href="https://igem.org/Team_Wikis?year=2012">iGEM 2012 web sites</a>  lists. </p>
 
</td>
</td>
 +
<td bgColor="#FFFFFF"></td>
 +
</tr>
 +
</table>
 +
<!-- end of final block -->
-
<td> </td>
+
<footer>
-
<td width="45%">  
+
<a href="#" class="go-top">Top</a>
-
<p>This wiki will be your team’s first interaction with the rest of the world, so here are a few tips to help you get started: </p>
+
</footer>
-
 
+
</html>
-
<ul>
+
-
<li>State your accomplishments! Tell people what you have achieved from the start. </li>
+
-
<li>Be clear about what you are doing and what you plan to do.</li>
+
-
<li>You have a global audience! Consider the different backgrounds that your users come from.</li>
+
-
<li>Make sure information is easy to find; nothing should be more than 3 clicks away.  </li>
+
-
<li>Avoid using very small fonts and low contrast colors; information should be easy to read.  </li>
+
-
<li>Start documenting your project as early as possible; don’t leave anything to the last minute before the Wiki Freeze. For a complete list of deadlines visit the <a href="">iGEM 2013 calendar</a> </li>
+
-
<li>Have lots of fun! </li>
+
-
</ul>
+
-
</br>
+
-
</td>
+
-
</tr>
+
-
</table>
+

Latest revision as of 15:29, 5 August 2014

Diabetes Mellitus

Diabetes mellitus is prevalent throughout the world especially in the United States and Mexico. Current methods of treatments have largely remained the same. Patients prick their fingers to draw blood in order for a device to report their blood glucose levels. After the device gives them that information, they administer the appropriate amount of insulin to themselves. There has yet to be a unified system for the sensing of blood glucose levels and insulin administration. As a solution, we propose the following:

The UNC Chapel Hill team has devised a protein controlled system in which E coli detects high glucose levels in its environment, and in response release one of two proteins, insulin or glucagon-like peptide-1
(Find out more at our project page)

Why did we choose this project?

In the National Diabetes Statistics Report of 2014 released by the National Center for Chronic Disease Prevention and Health Promotion it was reported that 29.1 million Americans (9.3% of the US population) have diabetes mellitus. The cost both direct and indirect of diabetes treatment is estimated to be 245 billion dollars, and the disease remains the 7th leading cause of premature death in the United States. With the prevalence of diabetes mellitus in the US population the 2014 UNC Chapel Hill iGEM team as part of a University that prides itself in serving "North Carolina, the United States, and the world through teaching, research, and public service" felt an obligation to address this problem

Here you can place the logos of your sponsors or other links!