Team:Zamorano/Gallery

From 2014.igem.org

(Difference between revisions)
 
(5 intermediate revisions not shown)
Line 3: Line 3:
<head>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-
 
-
<script src="https://2014.igem.org/Team:Zamorano/js/jquery-1.10.1.min.js" type="text/javascript"></script>
 
-
<script src="https://2014.igem.org/Team:Zamorano/js/jquery.mousewheel-3.0.6.pack.js" type="text/javascript"></script>
 
-
<script src="https://2014.igem.org/Team:Zamorano/js/jquery.fancybox.js?v=2.1.5" type="text/javascript"></script>
 
-
<script src="https://2014.igem.org/Team:Zamorano/js/jquery.fancybox-buttons.js?v=1.0.5" type="text/javascript"></script>
 
-
<script src="https://2014.igem.org/Team:Zamorano/js/jquery.fancybox-thumbs.js?v=1.0.7" type="text/javascript"></script>
 
-
<script src="https://2014.igem.org/Team:Zamorano/js/jquery.fancybox-media.js?v=1.0.6" type="text/javascript" ></script>
 
-
 
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
Line 19: Line 11:
<script type="text/javascript" src="http://getbootstrap.com/2.3.2/assets/js/bootstrap-tab.js"></script>
<script type="text/javascript" src="http://getbootstrap.com/2.3.2/assets/js/bootstrap-tab.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
-
 
-
 
-
 
-
<link rel="stylesheet" type="text/css" href="https://2014.igem.org/Team:Zamorano/css/jquery.fancybox.css?v=2.1.5" media="screen" />
 
-
<link rel="stylesheet" type="text/css"https://2014.igem.org/Team:Zamorano/css/jquery.fancybox-buttons.css?v=1.0.5" media="screen" />
 
-
<link rel="stylesheet" type="text/css"https://2014.igem.org/Team:Zamorano/css/jquery.fancybox-thumbs.css?v=1.0.7" />
 
-
 
-
 
<style type="text/css">
<style type="text/css">
Line 1,085: Line 1,069:
     });
     });
</script>
</script>
-
<script type="text/javascript">
 
-
$(document).ready(function() {
 
-
/*
 
-
*  Simple image gallery. Uses default settings
 
-
*/
 
-
 
-
$('.fancybox').fancybox();
 
-
 
-
/*
 
-
*  Different effects
 
-
*/
 
-
 
-
// Change title type, overlay closing speed
 
-
$(".fancybox-effects-a").fancybox({
 
-
helpers: {
 
-
title : {
 
-
type : 'outside'
 
-
},
 
-
overlay : {
 
-
speedOut : 0
 
-
}
 
-
}
 
-
});
 
-
 
-
// Disable opening and closing animations, change title type
 
-
$(".fancybox-effects-b").fancybox({
 
-
openEffect  : 'none',
 
-
closeEffect : 'none',
 
-
 
-
helpers : {
 
-
title : {
 
-
type : 'over'
 
-
}
 
-
}
 
-
});
 
-
 
-
// Set custom style, close if clicked, change title type and overlay color
 
-
$(".fancybox-effects-c").fancybox({
 
-
wrapCSS    : 'fancybox-custom',
 
-
closeClick : true,
 
-
 
-
openEffect : 'none',
 
-
 
-
helpers : {
 
-
title : {
 
-
type : 'inside'
 
-
},
 
-
overlay : {
 
-
css : {
 
-
'background' : 'rgba(238,238,238,0.85)'
 
-
}
 
-
}
 
-
}
 
-
});
 
-
 
-
// Remove padding, set opening and closing animations, close if clicked and disable overlay
 
-
$(".fancybox-effects-d").fancybox({
 
-
padding: 0,
 
-
 
-
openEffect : 'elastic',
 
-
openSpeed  : 150,
 
-
 
-
closeEffect : 'elastic',
 
-
closeSpeed  : 150,
 
-
 
-
closeClick : true,
 
-
 
-
helpers : {
 
-
overlay : null
 
-
}
 
-
});
 
-
 
-
/*
 
-
*  Button helper. Disable animations, hide close button, change title type and content
 
-
*/
 
-
 
-
$('.fancybox-buttons').fancybox({
 
-
openEffect  : 'none',
 
-
closeEffect : 'none',
 
-
 
-
prevEffect : 'none',
 
-
nextEffect : 'none',
 
-
 
-
closeBtn  : false,
 
-
 
-
helpers : {
 
-
title : {
 
-
type : 'inside'
 
-
},
 
-
buttons : {}
 
-
},
 
-
 
-
afterLoad : function() {
 
-
this.title = 'Image ' + (this.index + 1) + ' of ' + this.group.length + (this.title ? ' - ' + this.title : '');
 
-
}
 
-
});
 
-
 
-
 
-
/*
 
-
*  Thumbnail helper. Disable animations, hide close button, arrows and slide to next gallery item if clicked
 
-
*/
 
-
 
-
$('.fancybox-thumbs').fancybox({
 
-
prevEffect : 'none',
 
-
nextEffect : 'none',
 
-
 
-
closeBtn  : false,
 
-
arrows    : false,
 
-
nextClick : true,
 
-
 
-
helpers : {
 
-
thumbs : {
 
-
width  : 50,
 
-
height : 50
 
-
}
 
-
}
 
-
});
 
-
 
-
/*
 
-
*  Media helper. Group items, disable animations, hide arrows, enable media and button helpers.
 
-
*/
 
-
$('.fancybox-media')
 
-
.attr('rel', 'media-gallery')
 
-
.fancybox({
 
-
openEffect : 'none',
 
-
closeEffect : 'none',
 
-
prevEffect : 'none',
 
-
nextEffect : 'none',
 
-
 
-
arrows : false,
 
-
helpers : {
 
-
media : {},
 
-
buttons : {}
 
-
}
 
-
});
 
-
 
-
/*
 
-
*  Open manually
 
-
*/
 
-
 
-
$("#fancybox-manual-a").click(function() {
 
-
$.fancybox.open('1_b.jpg');
 
-
});
 
-
 
-
$("#fancybox-manual-b").click(function() {
 
-
$.fancybox.open({
 
-
href : 'iframe.html',
 
-
type : 'iframe',
 
-
padding : 5
 
-
});
 
-
});
 
-
 
-
$("#fancybox-manual-c").click(function() {
 
-
$.fancybox.open([
 
-
{
 
-
href : '1_b.jpg',
 
-
title : 'My title'
 
-
}, {
 
-
href : '2_b.jpg',
 
-
title : '2nd title'
 
-
}, {
 
-
href : '3_b.jpg'
 
-
}
 
-
], {
 
-
helpers : {
 
-
thumbs : {
 
-
width: 75,
 
-
height: 50
 
-
}
 
-
}
 
-
});
 
-
});
 
-
 
-
 
-
});
 
-
</script>
 
-
<style type="text/css">
 
-
.fancybox-custom .fancybox-skin {
 
-
box-shadow: 0 0 50px #222;
 
-
}
 
-
body {
 
-
max-width: 700px;
 
-
margin: 0 auto;
 
-
}
 
-
</style>
 
</head>
</head>
Line 1,297: Line 1,096:
<div class="navbar-inner">
<div class="navbar-inner">
-
<div class="igem-bar2"><img src="https://static.igem.org/mediawiki/2014/1/10/Zamorano_Logo.png"></div>
+
<div class="igem-bar2"><a href="http://www.zamorano.edu" target="_blank"><img src="https://static.igem.org/mediawiki/2014/1/10/Zamorano_Logo.png"></a></div>
     <ul class="nav">
     <ul class="nav">
Line 1,329: Line 1,128:
</div>
</div>
<br/>
<br/>
-
<h3>Creation of the <i>E. zamofordi</i> bacterium photos</h3>
+
<h1>Creation of the <i>E. zamofordi</i> bacterium photos</h1>
     <p>
     <p>
     On June 2013, we had the honor of counting with the presence of Dr. Paul Jaschke, an important molecular biologist of Stanford. With his aid, we could develop a copper biosensor based on a E. Coli bacterium, transformed by genetic engineering. This bacterium is able to detect copper pollution in contaminated water (possibly because of pesticides overuse or mining leakages.  
     On June 2013, we had the honor of counting with the presence of Dr. Paul Jaschke, an important molecular biologist of Stanford. With his aid, we could develop a copper biosensor based on a E. Coli bacterium, transformed by genetic engineering. This bacterium is able to detect copper pollution in contaminated water (possibly because of pesticides overuse or mining leakages.  
     </p>
     </p>
-
<p>
+
<table width="800" border="0" style="border-left:75px;">
-
<a class="fancybox-buttons" data-fancybox-group="button" href="https://static.igem.org/mediawiki/2014/f/ff/Zamorano_AH_1.jpg">
+
  <tr>
-
<img src="https://static.igem.org/mediawiki/2014/b/bb/Zamorano_AH_peq_1.jpg" alt="" />
+
    <td><img  src="https://static.igem.org/mediawiki/2014/f/ff/Zamorano_AH_1.jpg" width="476"/></td>
-
</a>
+
    <td><img  src="https://static.igem.org/mediawiki/2014/3/3c/Zamorano_AH_2.jpg" width="476"/></td>
-
<a class="fancybox-buttons" data-fancybox-group="button" href="https://static.igem.org/mediawiki/2014/3/3c/Zamorano_AH_2.jpg"><img src="https://static.igem.org/mediawiki/2014/9/99/Zamorano_AH_peq_2.jpg" alt="" /></a>
+
  </tr>
-
<a class="fancybox-buttons" data-fancybox-group="button" href="https://static.igem.org/mediawiki/2014/3/3e/Zamorano_AH_3.jpg"><img src="https://static.igem.org/mediawiki/2014/4/4e/Zamorano_AH_peq_3.jpg" alt="" /></a>
+
  <tr>
-
<a class="fancybox-buttons" data-fancybox-group="button" href="https://static.igem.org/mediawiki/2014/b/bb/Zamorano_AH_4.jpg"><img src="https://static.igem.org/mediawiki/2014/2/21/Zamorano_AH_peq_4.jpg" alt="" /></a>
+
    <td><img  src="https://static.igem.org/mediawiki/2014/3/3e/Zamorano_AH_3.jpg" width="476"/></td>
-
        <a class="fancybox-buttons" data-fancybox-group="button" href="AH_5.jpg"><img src="AH_peq_5.jpg" alt="" /></a>
+
    <td><img src="https://static.igem.org/mediawiki/2014/b/bb/Zamorano_AH_4.jpg" width="476"/></td>
-
        <a class="fancybox-buttons" data-fancybox-group="button" href="AH_6.jpg"><img src="AH_peq_6.jpg" alt="" /></a>
+
  </tr>
-
        <a class="fancybox-buttons" data-fancybox-group="button" href="AH_7.jpg"><img src="AH_peq_7.jpg" alt="" /></a>
+
  <tr>
-
        <a class="fancybox-buttons" data-fancybox-group="button" href="AH_8.jpg"><img src="AH_peq_8.jpg" alt="" /></a>
+
    <td><img  src="https://static.igem.org/mediawiki/2014/6/61/Zamorano_AH_5.jpg" width="476"/></td>
-
        <a class="fancybox-buttons" data-fancybox-group="button" href="AH_9.jpg"><img src="AH_peq_9.jpg" alt="" /></a>
+
    <td><img  src="https://static.igem.org/mediawiki/2014/e/e0/Zamorano_AH_6.jpg" width="476"/></td>
-
        <a class="fancybox-buttons" data-fancybox-group="button" href="AH_10.jpg"><img src="AH_peq_10.jpg" alt="" /></a>
+
  </tr>
-
</p>
+
  <tr>
 +
  <td><img  src="https://static.igem.org/mediawiki/2014/a/aa/Zamorano_AH_7.jpg" width="476"/></td>
 +
  <td><img  src="https://static.igem.org/mediawiki/2014/6/66/Zamorano_AH_8.jpg" width="476"/></td>
 +
  </tr>
 +
  <tr>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/d/d1/Zamorano_AH_9.jpg" width="476"/></td>
 +
    <td><img src="https://static.igem.org/mediawiki/2014/0/08/Zamorano_AH_10.jpg" width="476"/></td>
 +
  </tr>
 +
</table>
 +
<h1>Activities at Alison Bixby Stone School</h1>
 +
    <p>
 +
    Let’s take a look of the workshop iGEM Zamorano team prepared for the future scientists on synthetic biology. This took place on May 2014; the activity consisted in learning the basis of genetics and extraction of DNA using strawberries. This is a first step towards enlighten the younger generations and preparing them for a future full of scientific innovations and opportunities. Join us into this beautiful experience. 
 +
    </p>
 +
<table width="800" border="0" style="border-left:75px;">
 +
  <tr>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/1/17/Zamorano_ABSS_1.jpg" width="476"/></td>
 +
    <td><img src="https://static.igem.org/mediawiki/2014/e/e3/Zamorano_ABSS_2.jpg" width="476"/></td>
 +
  </tr>
 +
  <tr>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/a/a5/Zamorano_ABSS_3.jpg" width="476"/></td>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/e/ec/Zamorano_ABSS_4.jpg" width="476"/></td>
 +
  </tr>
 +
  <tr>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/d/df/Zamorano_ABSS_5.jpg" width="476"/></td>
 +
    <td><img src="https://static.igem.org/mediawiki/2014/6/6c/Zamorano_ABSS_6.jpg" width="476"/></td>
 +
  </tr>
 +
  <tr>
 +
  <td><img  src="https://static.igem.org/mediawiki/2014/1/1e/Zamorano_ABSS_7.jpg" width="476"/></td>
 +
  <td><img  src="https://static.igem.org/mediawiki/2014/5/5a/Zamorano_ABSS_8.jpg" width="476"/></td>
 +
  </tr>
 +
  <tr>
 +
    <td><img src="https://static.igem.org/mediawiki/2014/c/c4/Zamorano_ABSS_9.jpg" width="476"/></td>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/f/f5/Zamorano_ABSS_10.jpg" width="476"/></td>
 +
  </tr>
 +
</table>
 +
 
 +
 
 +
<h1>Zamorano’s Panamerican Fair Photos</h1>
 +
    <p>
 +
    In the Zamorano Panamerican Fair, which was helded on September 6th, our team developed an activity to show the people the extraction of DNA as a simple activity of synthetic biology. People were fascinated about how a little lab practice could obtain a big component of human beings. We also explain them how synthetic biology could become an important tool for giving solutions to the problems that are facing the world. 
 +
    </p>
 +
 
 +
 
 +
<table width="800" border="0" style="border-left:75px;">
 +
  <tr>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/c/cf/Zamorano_Feria_1.jpg" width="476"/></td>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/5/55/Zamorano_Feria_2.jpg" width="476"/></td>
 +
  </tr>
 +
  <tr>
 +
    <td><img src="https://static.igem.org/mediawiki/2014/1/1a/Zamorano_Feria_3.jpg" width="476"/></td>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/0/0f/Zamorano_Feria_4.jpg" width="476"/></td>
 +
  </tr>
 +
  <tr>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/6/67/Zamorano_Feria_5.jpg" width="476"/></td>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/e/e7/Zamorano_Feria_6.jpg" width="476"/></td>
 +
  </tr>
 +
 
 +
</table>
 +
 
 +
<h1>Presentation to Board of trustees photos</h1>
 +
    <p>
 +
    On June 2014, we presented our project to Zamorano’s board of trustees in order to introduce the members of our group to them. We explained to them the importance of our participation in the iGEM competition. They understood the relevance of involving Zamorano University in this kind of activities and gave us their complete support to keep on working on the project. this opened an important door to biosciences in our university. 
 +
    </p>
 +
 
 +
<table width="800" border="0" style="border-left:75px;">
 +
  <tr>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/e/ed/Zamorano_Presentacion_Junta_1.jpg" width="476"/></td>
 +
    <td><img src="https://static.igem.org/mediawiki/2014/d/d3/Zamorano_Presentacion_Junta_2.jpg" width="476"/></td>
 +
  </tr>
 +
  <tr>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/a/a3/Zamorano_Presentacion_Junta_3.jpg" width="476"/></td>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/6/6a/Zamorano_Presentacion_Junta_4.jpg" width="476"/></td>
 +
  </tr>
 +
  <tr>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/7/76/Zamorano_Presentacion_Junta_5.jpg" width="476"/></td>
 +
    <td><img src="https://static.igem.org/mediawiki/2014/b/be/Zamorano_Presentacion_Junta_6.jpg" width="476"/></td>
 +
  </tr>
 +
  <tr>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/2/2a/Zamorano_Presentacion_Junta_7.jpg" width="476"/></td>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/8/8c/Zamorano_Presentacion_Junta_8.jpg" width="476"/></td>
 +
  </tr>
 +
  <tr>
 +
    <td><img src="https://static.igem.org/mediawiki/2014/8/88/Zamorano_Presentacion_Junta_9.jpg" width="476"/></td>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/f/ff/Zamorano_Presentacion_Junta_10.jpg" width="476"/></td>
 +
  </tr>
 +
  <tr>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/3/3c/Zamorano_Presentacion_Junta_11.jpg" width="476"/></td>
 +
    <td><img src="https://static.igem.org/mediawiki/2014/f/fc/Zamorano_Presentacion_Junta_12.jpg" width="476"/></td>
 +
  </tr>
 +
</table>
 +
<h1>Presentation to the Biotechnology and Biosafety National Comitee</h1>
 +
    <p>
 +
    On September 2014, our team included the “risk assessment” as an important part of our project.  In order to emphasize it, we presented it to the Honduras biosafety committee to get its support. The members of the committee appreciated our activities, gave us advises and recommendations.
 +
    </p>
 +
<table width="800" border="0" style="border-left:75px;">
 +
  <tr>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/8/82/Zamorano_Presentacion_Comite_1.jpg" width="476"/></td>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/e/e7/Zamorano_Presentacion_Comite_2.jpg" width="476"/></td>
 +
  </tr>
 +
  <tr>
 +
    <td><img  src="https://static.igem.org/mediawiki/2014/0/0d/Zamorano_Presentacion_Comite_3.jpg" width="476"/></td>
 +
    <td></td>
 +
  </tr>
 +
 
 +
</table>
</div>
</div>
</body>
</body>
</html>
</html>

Latest revision as of 02:55, 18 October 2014

Gallery


Creation of the E. zamofordi bacterium photos

On June 2013, we had the honor of counting with the presence of Dr. Paul Jaschke, an important molecular biologist of Stanford. With his aid, we could develop a copper biosensor based on a E. Coli bacterium, transformed by genetic engineering. This bacterium is able to detect copper pollution in contaminated water (possibly because of pesticides overuse or mining leakages.

Activities at Alison Bixby Stone School

Let’s take a look of the workshop iGEM Zamorano team prepared for the future scientists on synthetic biology. This took place on May 2014; the activity consisted in learning the basis of genetics and extraction of DNA using strawberries. This is a first step towards enlighten the younger generations and preparing them for a future full of scientific innovations and opportunities. Join us into this beautiful experience.

Zamorano’s Panamerican Fair Photos

In the Zamorano Panamerican Fair, which was helded on September 6th, our team developed an activity to show the people the extraction of DNA as a simple activity of synthetic biology. People were fascinated about how a little lab practice could obtain a big component of human beings. We also explain them how synthetic biology could become an important tool for giving solutions to the problems that are facing the world.

Presentation to Board of trustees photos

On June 2014, we presented our project to Zamorano’s board of trustees in order to introduce the members of our group to them. We explained to them the importance of our participation in the iGEM competition. They understood the relevance of involving Zamorano University in this kind of activities and gave us their complete support to keep on working on the project. this opened an important door to biosciences in our university.

Presentation to the Biotechnology and Biosafety National Comitee

On September 2014, our team included the “risk assessment” as an important part of our project. In order to emphasize it, we presented it to the Honduras biosafety committee to get its support. The members of the committee appreciated our activities, gave us advises and recommendations.