From 5c2d95bc7270280b477ec53302ff372058b4e0ab Mon Sep 17 00:00:00 2001 From: marcelinhor <mareginato31@gmail.com> Date: Wed, 2 Oct 2024 00:07:30 -0300 Subject: [PATCH] Aba notebook --- wiki/menu.html | 13 +++++++++++++ wiki/pages/home.html | 2 +- wiki/pages/molecular-biology.html | 23 +++++++++++++++++++++++ wiki/pages/procedures-gcase.html | 23 +++++++++++++++++++++++ wiki/pages/protocols.html | 23 +++++++++++++++++++++++ 5 files changed, 83 insertions(+), 1 deletion(-) create mode 100644 wiki/pages/molecular-biology.html create mode 100644 wiki/pages/procedures-gcase.html create mode 100644 wiki/pages/protocols.html diff --git a/wiki/menu.html b/wiki/menu.html index 40ea106..fdf6eb0 100644 --- a/wiki/menu.html +++ b/wiki/menu.html @@ -48,6 +48,19 @@ </ul> </li> + <!-- NOTEBOOK --> + + <li class="nav-item dropdown"> + <a class="nav-link dropdown-toggle" href="{{ url_for('pages', page='notebook') }}" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false"> + Notebook + </a> + <ul class="dropdown-menu bg-dark" aria-labelledby="navbarDropdown"> + <li><a class="dropdown-item" href="{{ url_for('pages', page='molecular-biology') }}">Molecular Biology</a></li> + <li><a class="dropdown-item" href="{{ url_for('pages', page='procedures-gcase') }}">Procedures with GCase</a></li> + <li><a class="dropdown-item" href="{{ url_for('pages', page='protocols') }}">Protocols</a></li> + </ul> + </li> + <!---- SAFETY ----> <li class="nav-item"> <a class="nav-link" href="{{ url_for('pages', page='safety') }}">Safety</a> diff --git a/wiki/pages/home.html b/wiki/pages/home.html index 7fe8be8..c0f3367 100644 --- a/wiki/pages/home.html +++ b/wiki/pages/home.html @@ -3,7 +3,7 @@ {%block page_title %}Home{% endblock %} {% block title %} -<img src = "https://static.igem.wiki/teams/5428/titulo1.webp" style = "width: 70%;"> +<img src = "https://static.igem.wiki/teams/5428/titulo2.webp" style = "width: 70%;"> {% endblock %} diff --git a/wiki/pages/molecular-biology.html b/wiki/pages/molecular-biology.html new file mode 100644 index 0000000..474392e --- /dev/null +++ b/wiki/pages/molecular-biology.html @@ -0,0 +1,23 @@ +{% extends "layout.html" %} + +{% block title %}Molecular Biology{% endblock %} +{%block page_title %}Molecular Biology{% endblock %} +{% block lead %}{% endblock %} + +{% block page_content %} + +<div class="row mt-4 justify-content-center"> + <div class="col-lg-8 mx-auto"> + <div class="retangulo-no-titulo"> + <h4>Silver Medal Criterion #1</h4></div> + <div class="bd-callout bd-callout-info"> + <p>Demonstrate engineering success in a part of your project by going through at least one iteration of the engineering design cycle. This achievement should be distinct from your Contribution for Bronze.</p> + <p>If you plan to show engineering success by creating a new Part that has been shown to work as expected, you must document your contribution on the Part's Main Page on the <a href="https://parts.igem.org/Main_Page">Registry</a> for your team to be eligible for this criteria.</p> + <hr> + <p>Please see the <a href="https://competition.igem.org/judging/medals">2024 Medals Page</a> for more information.</p> + </div> + </div> + </div> +</div> + +{% endblock %} \ No newline at end of file diff --git a/wiki/pages/procedures-gcase.html b/wiki/pages/procedures-gcase.html new file mode 100644 index 0000000..3e9b146 --- /dev/null +++ b/wiki/pages/procedures-gcase.html @@ -0,0 +1,23 @@ +{% extends "layout.html" %} + +{% block title %}Procedures with GCase{% endblock %} +{%block page_title %}Procedures{% endblock %} +{% block lead %}{% endblock %} + +{% block page_content %} + +<div class="row mt-4 justify-content-center"> + <div class="col-lg-8 mx-auto"> + <div class="retangulo-no-titulo"> + <h4>Silver Medal Criterion #1</h4></div> + <div class="bd-callout bd-callout-info"> + <p>Demonstrate engineering success in a part of your project by going through at least one iteration of the engineering design cycle. This achievement should be distinct from your Contribution for Bronze.</p> + <p>If you plan to show engineering success by creating a new Part that has been shown to work as expected, you must document your contribution on the Part's Main Page on the <a href="https://parts.igem.org/Main_Page">Registry</a> for your team to be eligible for this criteria.</p> + <hr> + <p>Please see the <a href="https://competition.igem.org/judging/medals">2024 Medals Page</a> for more information.</p> + </div> + </div> + </div> +</div> + +{% endblock %} \ No newline at end of file diff --git a/wiki/pages/protocols.html b/wiki/pages/protocols.html new file mode 100644 index 0000000..7329889 --- /dev/null +++ b/wiki/pages/protocols.html @@ -0,0 +1,23 @@ +{% extends "layout.html" %} + +{% block title %}Protocols{% endblock %} +{%block page_title %}Protocols{% endblock %} +{% block lead %}{% endblock %} + +{% block page_content %} + +<div class="row mt-4 justify-content-center"> + <div class="col-lg-8 mx-auto"> + <div class="retangulo-no-titulo"> + <h4>Silver Medal Criterion #1</h4></div> + <div class="bd-callout bd-callout-info"> + <p>Demonstrate engineering success in a part of your project by going through at least one iteration of the engineering design cycle. This achievement should be distinct from your Contribution for Bronze.</p> + <p>If you plan to show engineering success by creating a new Part that has been shown to work as expected, you must document your contribution on the Part's Main Page on the <a href="https://parts.igem.org/Main_Page">Registry</a> for your team to be eligible for this criteria.</p> + <hr> + <p>Please see the <a href="https://competition.igem.org/judging/medals">2024 Medals Page</a> for more information.</p> + </div> + </div> + </div> +</div> + +{% endblock %} \ No newline at end of file -- GitLab