-
Notifications
You must be signed in to change notification settings - Fork 0
/
notebook.html
34 lines (30 loc) · 1.33 KB
/
notebook.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends "layout.html" %}
{% block title %}Notebook{% endblock %}
{% block lead %}Document the dates you worked on your project. This should be a detailed account of the work done each day for your project.{% endblock %}
{% block page_content %}
<div class="row mt-4">
<div class="col-lg-8">
<h2>What should this page contain?</h2>
<hr>
<ul>
<li>Chronological notes of what your team is doing.</li>
<li>Brief descriptions of daily important events.</li>
<li>Pictures of your progress.</li>
<li>Mention who participated in what task.</li>
</ul>
</div>
<div class="col-lg-4">
<h2>Inspirations</h2>
<hr>
<ul>
<li><a href="http://2018.igem.org/Team:Munich/Notebook">2018 Munich</a></li>
<li><a href="https://2019.igem.org/Team:Georgia_State/Notebook">2019 Georgia State</a></li>
<li><a href="https://2019.igem.org/Team:Newcastle/Notebook">2019 Newcastle</a></li>
<li><a href="https://2020.igem.org/Team:IISER-Pune-India/Notebook">2020 IISER Pune India</a></li>
<li><a href="https://2020.igem.org/Team:Lund/Notebook">2020 Lund</a></li>
<li><a href="https://2020.igem.org/Team:NOVA_LxPortugal/Notebook">2020 NOVA LxPortugal</a></li>
<li><a href="https://2020.igem.org/Team:RDFZ-China/NoteBook">2020 RDFZ China</a></li>
</ul>
</div>
</div>
{% endblock %}