Skip to content
Snippets Groups Projects
Commit 76306d32 authored by Ángel's avatar Ángel
Browse files

Update 2 files

- /wiki/pages/template
- /wiki/pages/results.html
parent 6841cdf2
No related branches found
No related tags found
No related merge requests found
Pipeline #453599 passed
......@@ -5,49 +5,51 @@
{% block page_content %}
<div class="row mt-4">
<div class="col-lg-5">
<h2>What should this page contain?</h2>
<hr>
<ul>
<li>Clearly and objectively describe the results of your work.</li>
<li>Future plans for the project.</li>
<li>Considerations for replicating the experiments.</li>
</ul>
<div class="pagecontainer">
<div class="title2">
<span>Project Description</span>
</div>
<div class="col-lg-7">
<h2>Describe what your results mean</h2>
<hr>
<ul>
<li>Interpretation of the results obtained during your project. Don't just show a plot/figure/graph/other, tell us what you think the data means. This is an important part of your project that the judges will look for.</li>
<li>Show data, but remember <b>all measurement and characterization data must also be on the Part's Main Page on the <a href="https://parts.igem.org/Main_Page">Registry</a>.</b> Otherwise these data will not be in consideration for any medals or part awards!</li>
<li>Consider including an analysis summary section to discuss what your results mean. Judges like to read what you think your data means, beyond all the data you have acquired during your project.</li>
</ul>
</div>
</div>
<div class="pagebody">
<div class="pagenav">
<div onclick="goTo(document.getElementById('one'))"><span id="subtitle1" style="color: #62D881;">Background</span></div>
</div>
<div class="pagecontent">
<!-- 1 -->
<div class="h" id="one">
<div class="h1">Background</div>
<p>The Netherlands has been facing a pressing <strong>nitrogen crisis</strong> for several years. This crisis is largely attributed to the <strong>agriculture sector</strong>, with over 80% of ammonia (a nitrogenous compound) emissions coming from manure <a href="#cite1" style="color: #185A4F;">[1]</a> and chemical fertilizers <a href="#cite2" style="color: #185A4F;">[2]</a>.</p>
<p>The over-use of fertilizers has a detrimental effect on the environment through the deposition of excess nitrogen oxides and ammonia in the ground, excessively enriching the environment with nutrients promoting uncontrolled plant and algal growth, or eutrophication, a form of nutrient imbalance <a href="#cite3" style="color: #185A4F;">[3]</a> that negatively impacts the local biodiversity. This highlights the need of the hour: <strong>tackle the nitrogen crisis without negatively affecting food production</strong>, which still depends highly on fertilizers.</p>
<div class="img-pagestyle">
<img src="https://static.igem.wiki/teams/5054/background.svg" alt="">
</div>
</div>
<div class="row mt-4">
<div class="col-lg-8">
<h2>Project Achievements</h2>
<hr>
<p>You can also include a list of bullet points (and links) of the successes and failures you have had over your summer. It is a quick reference page for the judges to see what you achieved during your summer.</p>
<ul>
<li>A list of linked bullet points of the successful results during your project</li>
<li>A list of linked bullet points of the unsuccessful results during your project and what you learned from them. This is about being scientifically honest. If you worked on an area for a long time with no success, tell us so we know where you put your effort. Furthermore, you can still impress the judges by thoughtfully discussing what went wrong and how you might change things. </li>
</ul>
</div>
<div class="col-lg-4">
<h2>Inspirations</h2>
<hr>
<ul>
<li><a href="https://2019.igem.org/Team:Newcastle/Results">2019 Newcastle</a></li>
<li><a href="https://2019.igem.org/Team:Munich/Results">2019 Munich</a></li>
<li><a href="https://2019.igem.org/Team:Tec-Chihuahua/Results">2019 Tec Chihuahua</a></li>
<li><a href="https://2020.igem.org/Team:Aalto-Helsinki/Results">2020 Aalto Helsinki</a></li>
<li><a href="https://2020.igem.org/Team:GreatBay_SCIE/Results">2020 GreatBay SCIE</a></li>
<li><a href="https://2020.igem.org/Team:Queens_Canada/Results">2020 Queens Canada</a></li>
</ul>
</div>
</div>
</div>
<script>
var TopDistance = 120;
let elements = [document.getElementById('one')];
window.goTo = function(el){
document.documentElement.scrollTop += el.getBoundingClientRect().top - TopDistance;
}
function Highlight(el, subtitle){
if (el.getBoundingClientRect().top < TopDistance + 1 && el.getBoundingClientRect().bottom > TopDistance){
subtitle.style.color = "#62D881";
}
else{
subtitle.style.color = "#185A4F";
}
}
function HighlightCheck(){
Highlight(elements[0], document.getElementById('subtitle1'));
}
window.addEventListener("scroll", HighlightCheck);
</script>
{% endblock %}
<div class="pagecontainer">
<div class="title2">
<span>Project Description</span>
</div>
<div class="pagebody">
<div class="pagenav">
<div onclick="goTo(document.getElementById('one'))"><span id="subtitle1" style="color: #62D881;">Background</span></div>
</div>
<div class="pagecontent">
<!-- 1 -->
<div class="h" id="one">
<div class="h1">Background</div>
<p>The Netherlands has been facing a pressing <strong>nitrogen crisis</strong> for several years. This crisis is largely attributed to the <strong>agriculture sector</strong>, with over 80% of ammonia (a nitrogenous compound) emissions coming from manure <a href="#cite1" style="color: #185A4F;">[1]</a> and chemical fertilizers <a href="#cite2" style="color: #185A4F;">[2]</a>.</p>
<p>The over-use of fertilizers has a detrimental effect on the environment through the deposition of excess nitrogen oxides and ammonia in the ground, excessively enriching the environment with nutrients promoting uncontrolled plant and algal growth, or eutrophication, a form of nutrient imbalance <a href="#cite3" style="color: #185A4F;">[3]</a> that negatively impacts the local biodiversity. This highlights the need of the hour: <strong>tackle the nitrogen crisis without negatively affecting food production</strong>, which still depends highly on fertilizers.</p>
<div class="img-pagestyle">
<img src="https://static.igem.wiki/teams/5054/background.svg" alt="">
</div>
</div>
</div>
</div>
<script>
var TopDistance = 120;
let elements = [document.getElementById('one')];
window.goTo = function(el){
document.documentElement.scrollTop += el.getBoundingClientRect().top - TopDistance;
}
function Highlight(el, subtitle){
if (el.getBoundingClientRect().top < TopDistance + 1 && el.getBoundingClientRect().bottom > TopDistance){
subtitle.style.color = "#62D881";
}
else{
subtitle.style.color = "#185A4F";
}
}
function HighlightCheck(){
Highlight(elements[0], document.getElementById('subtitle1'));
}
window.addEventListener("scroll", HighlightCheck);
</script>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment