From 0eec496b74e24dca2cd8daa2161a3a233781ae81 Mon Sep 17 00:00:00 2001 From: Fabio M <fabio@igem.org> Date: Wed, 7 Jun 2023 19:45:23 +0000 Subject: [PATCH] 2023 release --- README.md | 10 +-- app.py | 4 +- static/style.css | 2 +- wiki/footer.html | 2 +- wiki/layout.html | 5 +- wiki/menu.html | 19 +--- wiki/pages/attributions.html | 95 ++++++-------------- wiki/pages/collaborations.html | 39 -------- wiki/pages/communication.html | 20 ----- wiki/pages/contribution.html | 2 +- wiki/pages/description.html | 4 +- wiki/pages/education.html | 6 +- wiki/pages/engineering.html | 2 +- wiki/pages/entrepreneurship.html | 4 +- wiki/pages/hardware.html | 4 +- wiki/pages/{index.html => home.html} | 24 ++--- wiki/pages/human-practices.html | 19 ++-- wiki/pages/implementation.html | 19 ---- wiki/pages/improve.html | 24 ----- wiki/pages/inclusivity.html | 2 +- wiki/pages/measurement.html | 4 +- wiki/pages/model.html | 11 +-- wiki/pages/part-collection.html | 25 ------ wiki/pages/partnership.html | 19 ---- wiki/pages/parts.html | 128 --------------------------- wiki/pages/plant.html | 4 +- wiki/pages/proof-of-concept.html | 19 ---- wiki/pages/safety.html | 4 +- wiki/pages/software.html | 6 +- wiki/pages/sustainable.html | 6 +- wiki/wiki-tools.html | 45 ---------- 31 files changed, 85 insertions(+), 492 deletions(-) delete mode 100644 wiki/pages/collaborations.html delete mode 100644 wiki/pages/communication.html rename wiki/pages/{index.html => home.html} (53%) delete mode 100644 wiki/pages/implementation.html delete mode 100644 wiki/pages/improve.html delete mode 100644 wiki/pages/part-collection.html delete mode 100644 wiki/pages/partnership.html delete mode 100644 wiki/pages/parts.html delete mode 100644 wiki/pages/proof-of-concept.html delete mode 100644 wiki/wiki-tools.html diff --git a/README.md b/README.md index f147743..a696226 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,6 @@ The static assets are in the `static` directory. The layout and templates are in |__ footer.html -> Footer that will appear in all the pages |__ layout.html -> Main layout of your wiki. All the pages will follow its structure |__ menu.html -> Menu that will appear in all the pages - |__ wiki-tools.html -> Wiki tools to help getting started with this template |__ pages/ -> Directory for all the pages |__ *.html -> Actual pages of your wiki |__ .gitignore -> Tells GitLab which files/directories should not be uploaded to the repository @@ -49,14 +48,15 @@ The static assets are in the `static` directory. The layout and templates are in ### Building locally (advanced users) -To work locally with this project, you'll have to follow the steps below: +To work locally with this project, follow the steps below: #### Install ```bash -git clone https://gitlab.igem.org/templates/wiki-frozen-flask -cd example +git clone https://gitlab.igem.org/templates/wiki-frozen-flask.git +cd wiki-frozen-flask python3 -m venv venv -. venv/bin/activate +. venv/bin/activate # on Linux, MacOS; or +. venv\Scripts\activate # on Windows pip install -r dependencies.txt ``` diff --git a/app.py b/app.py index b7e80c1..fa413c7 100644 --- a/app.py +++ b/app.py @@ -23,8 +23,8 @@ def serve(): freezer.run() @app.route('/') -def index(): - return render_template('pages/index.html') +def home(): + return render_template('pages/home.html') @app.route('/<page>') def pages(page): diff --git a/static/style.css b/static/style.css index 811d976..1159978 100644 --- a/static/style.css +++ b/static/style.css @@ -1,7 +1,7 @@ body { padding-top: 56px; } .left-aligned { margin-left: auto; } .bg-dark { background-color: #343a40 !important; } -.bg-hero { background-color: #7952b3; } +.bg-hero { background-color: #45b06cff; } /* CALLOUT */ .bd-callout { padding:1.25rem; margin-top:1.25rem; margin-bottom:1.25rem; border:1px solid #e9ecef; border-left-width:.25rem; border-radius:.25rem } diff --git a/wiki/footer.html b/wiki/footer.html index 1b27c29..391aec2 100644 --- a/wiki/footer.html +++ b/wiki/footer.html @@ -27,7 +27,7 @@ <!-- The following MUST be on every page: license information and link to the repository on gitlab.igem.org --> <div class="row mt-4"> <div class="col"> - <p class="mb-0"><small>© 2022 - Content on this site is licensed under a <a class="subfoot" href="https://creativecommons.org/licenses/by/4.0/" rel="license">Creative Commons Attribution 4.0 International license</a>.</small></p> + <p class="mb-0"><small>© 2023 - Content on this site is licensed under a <a class="subfoot" href="https://creativecommons.org/licenses/by/4.0/" rel="license">Creative Commons Attribution 4.0 International license</a>.</small></p> <p><small>The repository used to create this website is available at <a href="https://gitlab.igem.org/templates/wiki-frozen-flask">gitlab.igem.org/templates/wiki-frozen-flask</a>.</small></p> </div> </div> diff --git a/wiki/layout.html b/wiki/layout.html index 810ab9b..f4625ca 100644 --- a/wiki/layout.html +++ b/wiki/layout.html @@ -13,7 +13,7 @@ <!-- Custom CSS --> <link href="{{ url_for('static', filename = 'style.css') }}" rel="stylesheet"> - <title>{% block title %}{% endblock %} | TeamName - iGEM 2022</title> + <title>{% block title %}{% endblock %} | TeamName - iGEM 2023</title> </head> <body> @@ -40,9 +40,6 @@ <!-- Footer: MUST mention license AND have a link to team wiki's repository on gitlab.igem.org --> {% include 'footer.html' %} - <!-- Wiki Tools: Teams are allowed to remove it --> - {% include 'wiki-tools.html' %} - <!-- Bootstrap Bundle with Popper --> <script src="{{ url_for('static', filename = 'bootstrap.bundle.min.js') }}"></script> </body> diff --git a/wiki/menu.html b/wiki/menu.html index bc086b9..3d5ae3f 100644 --- a/wiki/menu.html +++ b/wiki/menu.html @@ -14,7 +14,7 @@ <!---- HOME ----> <li class="nav-item"> - <a class="nav-link" href="{{ url_for('index') }}">Home</a> + <a class="nav-link" href="{{ url_for('home') }}">Home</a> </li> <!---- TEAM ----> @@ -25,7 +25,6 @@ <ul class="dropdown-menu" aria-labelledby="navbarDropdown"> <li><a class="dropdown-item" href="{{ url_for('pages', page='team') }}">Team</a></li> <li><a class="dropdown-item" href="{{ url_for('pages', page='attributions') }}">Attributions</a></li> - <li><a class="dropdown-item" href="{{ url_for('pages', page='collaborations') }}">Collaborations</a></li> </ul> </li> @@ -35,31 +34,15 @@ Project </a> <ul class="dropdown-menu" aria-labelledby="navbarDropdown"> - <li><a class="dropdown-item" href="{{ url_for('pages', page='communication') }}">Communication</a></li> <li><a class="dropdown-item" href="{{ url_for('pages', page='contribution') }}">Contribution</a></li> <li><a class="dropdown-item" href="{{ url_for('pages', page='description') }}">Description</a></li> <li><a class="dropdown-item" href="{{ url_for('pages', page='engineering') }}">Engineering</a></li> <li><a class="dropdown-item" href="{{ url_for('pages', page='experiments') }}">Experiments</a></li> - <li><a class="dropdown-item" href="{{ url_for('pages', page='implementation') }}">Implementation</a></li> <li><a class="dropdown-item" href="{{ url_for('pages', page='notebook') }}">Notebook</a></li> - <li><a class="dropdown-item" href="{{ url_for('pages', page='partnership') }}">Partnership</a></li> - <li><a class="dropdown-item" href="{{ url_for('pages', page='proof-of-concept') }}">Proof of Concept</a></li> <li><a class="dropdown-item" href="{{ url_for('pages', page='results') }}">Results</a></li> </ul> </li> - <!---- PARTS ----> - <li class="nav-item dropdown"> - <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false"> - Parts - </a> - <ul class="dropdown-menu" aria-labelledby="navbarDropdown"> - <li><a class="dropdown-item" href="{{ url_for('pages', page='part-collection') }}">Part Collection</a></li> - <li><a class="dropdown-item" href="{{ url_for('pages', page='parts') }}">Parts</a></li> - <li><a class="dropdown-item" href="{{ url_for('pages', page='improve') }}">Improve</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/attributions.html b/wiki/pages/attributions.html index 007803f..2d66c38 100644 --- a/wiki/pages/attributions.html +++ b/wiki/pages/attributions.html @@ -1,7 +1,7 @@ {% extends "layout.html" %} {% block title %}Attributions{% endblock %} -{% block lead %}Use this page to attribute work done on your project. This includes the work done by each of the student members on your team and any work that was done by people outside of your team, including the host labs, advisors, instructors, and individuals not on the team roster. This requirement is not about literature references - these can and should be displayed throughout your wiki.{% endblock %} +{% block lead %}This page must show the attribution form of your project. This includes the work done by each of the student members on your team and any work that was done by people outside of your team, including the host labs, advisors, instructors, and individuals not on the team roster. This requirement is not about literature references - these can and should be displayed throughout your wiki.{% endblock %} {% block page_content %} @@ -10,78 +10,41 @@ <div class="bd-callout bd-callout-info"> <h4>Bronze Medal Criterion #2</h4> <p>Describe what work your team members did and what other people did for your project.</p> + <p>The form that bas been embded in an iframe in this page shows your team's Project Attribution form. This page must keep the form as it is.</p> + <p>If you use a different website framework, make sure to embed the right URL for your team's form.</p> <hr> - <p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p> + <p>Please see the <a href="https://competition.igem.org/deliverables/project-attribution">Project Attribution page</a> for more information.</p> </div> </div> </div> +<!-- + ====================================================================== + == VERY IMPORTANT == + ====================================================================== + LEAVE THE IFRAME CODE BELOW AS IT IS, THE ATTRIBUTION FORM OF YOUR TEAM + WILL BE DISPLAYED ON THIS PAGE. DO NOT REMOVE IT, OTHERWISE YOU RISK OF + NOT MEETING BRONZE MEDAL CRITERION #2 + --> <div class="row mt-4"> - <div class="col-lg-8"> - <h2>What should this page contain?</h2> - <hr> - <ul> - <li>Clearly state what each member of the team accomplished. We have provided some recommended categories below. Your team may also have other categories you can include.</li> - <ul> - <li><strong>Analysis:</strong> analyzing data generated by your team, another iGEM team (current or previous), and/or from literature as needed for your project</li> - <li><strong>Conceptualization:</strong> brainstorming and developing ideas for the project</li> - <li><strong>Investigation:</strong> performing the experiments and/or collecting data/evidence </li> - <li><strong>Lab Maintenance:</strong> cleaning, organizing, and preparing the research facilities or lab </li> - <li><strong>Fundraising:</strong> raising money, in-kind donations of materials, and/or services for the team’s activities</li> - <li><strong>Public Engagement:</strong> preparing and/or implementing tools/activities to engage the broader community </li> - <li><strong>Entrepreneurship:</strong> developing business models and other commercially relevant materials or activities</li> - <li><strong>Background Research:</strong> reading peer-reviewed scientific research articles, white papers, regulations/guidelines, and other documents</li> - <li><strong>Data Curation:</strong> annotating (producing metadata), cleaning, and maintaining research data for your team's project and for future use by other iGEM teams or members of the synthetic biology community</li> - <li><strong>Software:</strong> developing, implementing, and/or testing computer programs and code</li> - <li><strong>Hardware:</strong> designing, building, and/or testing mechanical, electrical, or optical hardware systems</li> - <li><strong>Project Administration:</strong> managing and coordinating the project activities, planning, and execution</li> - <li><strong>Visualization:</strong> preparation, creation and/or presentation of the work including data visualization, user interfaces, videos and other graphics</li> - <li><strong>Writing:</strong> writing, reviewing or editing content for the wiki or other documents to be shared outside the team</li> - <li><strong>Safety:</strong> performing activities to ensure compliance with the safety guidelines or requirements of iGEM, your institution, and/or government</li> - </ul> - <li>Clearly state who provided the student team members with:</li> - <ul> - <li>General support</li> - <li>Project support and advice</li> - <li>Fundraising help and advice</li> - <li>Lab support</li> - <li>Difficult technique support</li> - <li>Project advisor support</li> - <li>Wiki support</li> - <li>Presentation coaching</li> - <li>Human Practices support</li> - </ul> - <li>Thanks and acknowledgements for all other people involved in helping make your team successful - <li>Literature references: we encourage you to display literature references throughout your entire wiki - </ul> - </div> - <div class="col-lg-4"> - <h2>Inspiration</h2> - <hr> - <ul> - <li><a href="https://2019.igem.org/Team:William_and_Mary/Attributions">2019 William and Mary</a></li> - <li><a href="https://2019.igem.org/Team:Thessaloniki/Attributions">2019 Thessaloniki </a></li> - <li><a href="https://2019.igem.org/Team:Sydney_Australia/Attributions">2019 Sydney Australia </a></li> - <li><a href="https://2020.igem.org/Team:AUC-EGYPT/Attributions">2020 AUC EGYPT</a></li> - <li><a href="https://2020.igem.org/Team:Korea-SIS/Attributions">2020 Korea SIS</a></li> - <li><a href="https://2020.igem.org/Team:Manchester/Attributions">2020 Manchester</a></li> - <li><a href="https://2020.igem.org/Team:NJTech_China/Attributions">2020 NJTech China</a></li> - </ul> - </div> -</div> + <script type="text/javascript"> + // Listen to size change and update form height + window.addEventListener('message', function (e) { + const {type, data} = JSON.parse(e.data); + if (type === 'igem-attribution-form') { + const element = document.getElementById('igem-attribution-form') + element.style.height = data + 50 +'px' + } + }); + </script> + <iframe + style='width: 100%' + id="igem-attribution-form" + src="https://attributions.igem.org?team=Example&year=2023" + > + </iframe> + <!-- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ --> -<div class="row mt-4"> - <div class="col-lg-6"> - <h2>Why is this page needed?</h2> - <hr> - <p>The Attribution requirement helps the judges know what you did yourselves and what you had help with. You can get help with difficult or complex techniques, but you must report what work your team did and what work was done by others.</p> - <p>For example, you might choose to work with an animal model during your project. Working with animals requires getting a license and applying far in advance to conduct certain experiments in many countries. This is difficult to achieve during the course of a summer, but much easier if you can work with a postdoc or PI who has the right licenses.</p> - </div> - <div class="col-lg-6"> - <h2>Can we base our project on a previous one?</h2> - <hr> - <p>Yes! You can have a project based on a previous team, or based on someone else's idea, <b>as long as you state this fact very clearly and give credit for the original project.</b></p> - </div> </div> {% endblock %} diff --git a/wiki/pages/collaborations.html b/wiki/pages/collaborations.html deleted file mode 100644 index baea2c5..0000000 --- a/wiki/pages/collaborations.html +++ /dev/null @@ -1,39 +0,0 @@ -{% extends "layout.html" %} - -{% block title %}Collaborations{% endblock %} -{% block lead %}Sharing and collaboration are core values of iGEM. We encourage you to reach out and work with other teams on difficult problems that you can more easily solve together.{% endblock %} - -{% block page_content %} - -<div class="row mt-4"> - <div class="col"> - <div class="bd-callout bd-callout-info"> - <h4>Silver Medal Criterion #2</h4> - <p>Collaborate with one (or more) 2022 iGEM team(s) in a meaningful way.</p> - <hr> - <p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p> - </div> - </div> -</div> - -<div class="row mt-4"> - <div class="col-lg-6"> - <h2>Which teams can we work with?</h2> - <hr> - <p>You can work with any other iGEM 2022 team in the competition. You can also work with non-iGEM research groups, but they do not count towards the iGEM team collaboration silver medal criterion.</p> - </div> - <div class="col-lg-6"> - <h2>Some suggestions</h2> - <hr> - <ul> - <li>Improve the function of another team's BioBrick Part or Device</li> - <li>Characterize another team's part</li> - <li>Debug a construct</li> - <li>Model or simulate another team's system</li> - <li>Test another team's software</li> - <li>Help build and test another team's hardware project</li> - </ul> - </div> -</div> - -{% endblock %} diff --git a/wiki/pages/communication.html b/wiki/pages/communication.html deleted file mode 100644 index 435babb..0000000 --- a/wiki/pages/communication.html +++ /dev/null @@ -1,20 +0,0 @@ -{% extends "layout.html" %} - -{% block title %}Communication{% endblock %} -{% block lead %}Develop and implement education, science communication, and/or outreach materials related to synthetic biology.{% endblock %} - -{% block page_content %} - -<div class="row mt-4"> - <div class="col"> - <div class="bd-callout bd-callout-info"> - <h4>Gold Medal Criterion #6: Education & Communication</h4> - <p>Develop and implement education, science communication, and/or outreach materials related to synthetic biology.<p> - <p>All activities must follow Safety policies for <a href="https://responsibility.igem.org/safety-policies/human-subjects">Human Subjects Research</a>.</p> - <hr> - <p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p> - </div> - </div> -</div> - -{% endblock %} \ No newline at end of file diff --git a/wiki/pages/contribution.html b/wiki/pages/contribution.html index d5b10dc..6b8b551 100644 --- a/wiki/pages/contribution.html +++ b/wiki/pages/contribution.html @@ -12,7 +12,7 @@ <p>Make a useful contribution for future iGEM teams. Use this page to document that contribution.<p> <p>If you are making a contribution by adding information to an existing Part or creating a new Part, you must document your contribution on the Part's Main Page on the <a href="http://parts.igem.org/Main_Page">Registry</a> for your team to be eligible for this criteria. You can use this page to link to that part and include additional information about your contribution.</p> <hr> - <p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p> + <p>Please see the <a href="https://competition.igem.org/judging/medals">2023 Medals Page</a> for more information.</p> </div> </div> </div> diff --git a/wiki/pages/description.html b/wiki/pages/description.html index 9027e2a..069a305 100644 --- a/wiki/pages/description.html +++ b/wiki/pages/description.html @@ -11,7 +11,7 @@ <h4>Bronze Medal Criterion #3</h4> <p>Describe how and why you chose your iGEM project.<p> <hr> - <p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p> + <p>Please see the <a href="https://competition.igem.org/judging/medals">2023 Medals Page</a> for more information.</p> </div> </div> </div> @@ -31,7 +31,7 @@ <h2>Inspirations</h2> <hr> <ul> - <li><a href="https://2019.igem.org/Team:Leiden/Description">2019 Leiden</a></li> + <li><a href="https://2022.igem.wiki/dtu-denmark/description">2022 DTU-Denmark</a></li> <li><a href="https://2019.igem.org/Team:ITESO_Guadalajara/Description">2019 ITESO Guadalajara</a></li> <li><a href="https://2020.igem.org/Team:Technion-Israel/Description">2020 Technion Israel</a></li> <li><a href="https://2020.igem.org/Team:Botchan_Lab_Tokyo/Description">2020 Botchan Lab Tokyo</a></li> diff --git a/wiki/pages/education.html b/wiki/pages/education.html index c74e2fc..80ff33d 100644 --- a/wiki/pages/education.html +++ b/wiki/pages/education.html @@ -8,11 +8,11 @@ <div class="row mt-4"> <div class="col"> <div class="bd-callout bd-callout-info"> - <h4>Best Education Special Prize</h4> + <h4>Best Education</h4> <p>How have you developed new opportunities to include more people in shaping synthetic biology? Innovative educational tools and outreach activities have the ability to establish a two-way dialogue with new communities by discussing public values and the science behind synthetic biology. Document your approach and what was learned by everyone involved to compete for this award.</p> - <p>To compete for the Best Education Prize, please describe your work on this page and also fill out the description on the <a href="https://competition.igem.org/deliverables/judging-form">judging form</a>.</p> + <p>To compete for the Best Education prize, please describe your work on this page and also fill out the description on the <a href="https://competition.igem.org/deliverables/judging-form">judging form</a>.</p> <hr> - <p>Please see the <a href="https://competition.igem.org/judging/awards">2022 Awards Page</a> for more information.</p> + <p>Please see the <a href="https://competition.igem.org/judging/awards">2023 Awards Page</a> for more information.</p> </div> </div> </div> diff --git a/wiki/pages/engineering.html b/wiki/pages/engineering.html index 1115503..a3f04a2 100644 --- a/wiki/pages/engineering.html +++ b/wiki/pages/engineering.html @@ -12,7 +12,7 @@ <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="http://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">2022 Medals Page</a> for more information.</p> + <p>Please see the <a href="https://competition.igem.org/judging/medals">2023 Medals Page</a> for more information.</p> </div> </div> </div> diff --git a/wiki/pages/entrepreneurship.html b/wiki/pages/entrepreneurship.html index e86039c..8d7e5d8 100644 --- a/wiki/pages/entrepreneurship.html +++ b/wiki/pages/entrepreneurship.html @@ -8,11 +8,11 @@ <div class="row mt-4"> <div class="col"> <div class="bd-callout bd-callout-info"> - <h4>Best Supporting Entrepreneurship Special Prize</h4> + <h4>Best Supporting Entrepreneurship</h4> <p>The Best Supporting Entrepreneurship award recognizes exceptional effort to build a business case and commercialize an iGEM project. This award is open to all teams to show that entrepreneurship is something all teams can aspire to do with their project. This award can go to an new project, or to a previous project that a team aimed to commercialize. Have you filed a provisional patent on your project/device/process? Have you raised money to build and ship products? Have you pitched your idea to investors and received money? As always in iGEM, the aim is to impress the judges!</p> <p>To compete for the Best Supporting Entrepreneurship prize, please describe your work on this page and also fill out the description on the <a href="https://competition.igem.org/deliverables/judging-form">judging form</a>.</p> <hr> - <p>Please see the <a href="https://competition.igem.org/judging/awards">2022 Awards Page</a> for more information.</p> + <p>Please see the <a href="https://competition.igem.org/judging/awards">2023 Awards Page</a> for more information.</p> </div> </div> </div> diff --git a/wiki/pages/hardware.html b/wiki/pages/hardware.html index 9b982a3..dbf97de 100644 --- a/wiki/pages/hardware.html +++ b/wiki/pages/hardware.html @@ -8,11 +8,11 @@ <div class="row mt-4"> <div class="col"> <div class="bd-callout bd-callout-info"> - <h4>Best Hardware Special Prize</h4> + <h4>Best Hardware</h4> <p>This is a prize for the team that has developed a piece of hardware for synthetic biology. Hardware in iGEM should make synthetic biology based on standard parts easier, faster, better or more accessible to our community. Did your team make a sensor to help teams characterize parts? Did you make a robot that can help teams perform experiments or do cloning more easily? Tell us what your team did for this award!</p> <p>To compete for the Best Hardware prize, please describe your work on this page and also fill out the description on the <a href="https://competition.igem.org/deliverables/judging-form">judging form</a>.</p> <hr> - <p>Please see the <a href="https://competition.igem.org/judging/awards">2022 Awards Page</a> for more information.</p> + <p>Please see the <a href="https://competition.igem.org/judging/awards">2023 Awards Page</a> for more information.</p> </div> </div> </div> diff --git a/wiki/pages/index.html b/wiki/pages/home.html similarity index 53% rename from wiki/pages/index.html rename to wiki/pages/home.html index 81b658e..99c8a76 100644 --- a/wiki/pages/index.html +++ b/wiki/pages/home.html @@ -1,7 +1,7 @@ {% extends "layout.html" %} {% block title %}Home{% endblock %} -{% block lead %}<b>Welcome to iGEM 2022!</b> Your team has been approved and you are ready to start the iGEM season!{% endblock %} +{% block lead %}<b>Welcome to iGEM 2023!</b> Your team has been approved and you are ready to start the iGEM season!{% endblock %} {% block page_content %} @@ -11,8 +11,8 @@ <hr> <p>Please read the following pages:</p> <ul> - <li><a href="https://competition.igem.org/">The Competition Page</a></li> - <li><a href="https://competition.igem.org/deliverables/team-wiki">Wiki Requirements page</a></li> + <li><a href="https://competition.igem.org/deliverables/team-wiki" target="_blank">Wiki Requirements page</a></li> + <li><a href="https://competition.igem.org/judging/pages-for-awards" target="_blank">Standard URL Pages for Awards</a></li> </ul> </div> </div> @@ -20,8 +20,9 @@ <div class="col"> <h2>Styling your wiki</h2> <hr> - <p>You may style this page as you like or you can simply leave the style as it is. You can easily keep the styling and edit the content of these default wiki pages with your project information and completely fulfill the requirement to document your project.</p> - <p>While you may not win Best Wiki with this styling, your team is still eligible for all other awards. This default wiki meets the requirements, it improves navigability and ease of use for visitors, and you should not feel it is necessary to style beyond what has been provided.</p> + <p>Feel free to customize the page styling according to your preferences, or you can simply leave the style as it is. It's wise to focus on a clear content first, and on a clean design later.</p> + <p>Be cautious with the size of the assets like images, videos, and more into your wiki. Large file sizes can hinder the presentation of wikis due to slow internet connections. Remember to compress large files before uploading them to iGEM servers.</p> + <p>This default wiki meets the requirements, enhances navigability, and provides a user-friendly experience for visitors. You should not feel obliged to go beyond the provided styling.</p> </div> </div> <div class="row mt-4"> @@ -35,7 +36,7 @@ <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 iGEM 2022 calendar</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="https://competition.igem.org/calendar" target="_blank">iGEM Competition calendar</a></li> <li>Have lots of fun!</li> </ul> </div> @@ -44,11 +45,12 @@ <hr> <p>You can also view other team wikis for inspiration! Here are some examples:</p> <ul> - <li><a href="https://2019.igem.org/Team:Vilnius-Lithuania">2019 Vilnius Lithuania</a></li> - <li><a href="https://2019.igem.org/Team:NUS_Singapore">2019 NUS Singapore</a></li> - <li><a href="https://2019.igem.org/Team:Lambert_GA">2019 Lambert GA</a></li> - <li><a href="https://2020.igem.org/Team:Waterloo">2020 Waterloo</a></li> - <li><a href="https://2020.igem.org/Team:TUDelft">2020 TUDelft</a></li> + <li><a href="https://2022.igem.wiki/dtu-denmark">2022 DTU-Denmark</a></li> + <li><a href="https://2022.igem.wiki/virginia">2022 Virginia</a></li> + <li><a href="https://2022.igem.wiki/crete">2022 Crete</a></li> + <li><a href="https://2022.igem.wiki/estonia-tuit">2022 Estonia_TUIT</a></li> + <li><a href="https://2022.igem.wiki/ashesighana">2022 AshesiGhana</a></li> + <li><a href="https://2021.igem.org/Team:SDU-Denmark">2021 SDU-Denmark</a></li> <li><a href="https://2020.igem.org/Team:XMU-China">2020 XMU China </a></li> <li><a href="https://2020.igem.org/Team:TAS_Taipei">2020 TAS Taipei </a></li> </ul> diff --git a/wiki/pages/human-practices.html b/wiki/pages/human-practices.html index de78aff..3eb92d8 100644 --- a/wiki/pages/human-practices.html +++ b/wiki/pages/human-practices.html @@ -8,25 +8,18 @@ <div class="row mt-4"> <div class="col"> <div class="bd-callout bd-callout-info"> - <h4>Silver Medal Criterion #3</h4> + <h4>Silver Medal Criterion #2</h4> <p>Explain how you have determined your work is responsible and good for the world.</p> <hr> - <p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p> + <p>Please see the <a href="https://competition.igem.org/judging/medals">2023 Medals Page</a> for more information.</p> </div> <div class="bd-callout bd-callout-info"> - <h4>Gold Medal Criterion #1</h4> - <p>Demonstrate how your team responded to your human practices reflections, research, and/or engagement. You should show how your activities impacted your project purpose, design, and/or execution. </p> - <hr> - <p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p> - </div> - - <div class="bd-callout bd-callout-info"> - <h4>Best Integrated Human Practices Special Prize</h4> - <p>To compete for the this prize, please describe your work on this page and also fill out the description on the <a href="https://competition.igem.org/deliverables/judging-form">judging form</a>.</p> + <h4>Best Integrated Human Practices</h4> + <p>To compete for the Best Integrated Human Practices prize, please describe your work on this page and also fill out the description on the <a href="https://competition.igem.org/deliverables/judging-form">judging form</a>.</p> <p>How does your project affect society and how does society influence the direction of your project? How might ethical considerations and stakeholder input guide your project purpose and design and the experiments you conduct in the lab? How does this feedback enter into the process of your work all through the iGEM competition? Document a thoughtful and creative approach to exploring these questions and how your project evolved in the process to compete for this award!</p> <hr> - <p>Please see the <a href="https://competition.igem.org/judging/awards">2022 Awards Page</a> for more information.</p> + <p>Please see the <a href="https://competition.igem.org/judging/awards">2023 Awards Page</a> for more information.</p> </div> </div> </div> @@ -36,7 +29,7 @@ <h2>Overview</h2> <hr> <p>At iGEM we believe societal considerations should be upfront and integrated throughout the design and execution of synthetic biology projects. “Human Practices†refers to iGEM teams' efforts to actively consider how the world affects their work and their work affects the world. Through your Human Practices activities, your team should demonstrate how you have thought carefully and creatively about whether your project is responsible and good for the world. We invite you to explore issues relating (but not limited) to the ethics, safety, security, and sustainability of your project, and to show how this exploration feeds back into your project purpose, design, and execution.</p> - <p>Please note you can compete for the Silver Medal criterion #3, Gold Medal criterion #1 and the Best Integrated Human Practices prize with this page.</p> + <p>Please note you can compete for the Silver Medal criterion #2 and the Best Integrated Human Practices prize with this page.</p> <p>For more information, please see the <a href="https://responsibility.igem.org/human-practices/what-is-human-practices">Human Practices Hub</a>. <p>On this page, your team should document all of your Human Practices work and activities. You should write about the Human Practices topics you considered in your project, document any activities you conducted to explore these topics (such as engaging with experts and stakeholders), describe why you took a particular approach (including referencing any work you built upon), and explain if and how you integrated takeaways from your Human Practices work back into your project purpose, design and/or execution.</p> </div> diff --git a/wiki/pages/implementation.html b/wiki/pages/implementation.html deleted file mode 100644 index ec65efc..0000000 --- a/wiki/pages/implementation.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends "layout.html" %} - -{% block title %}Proposed Implementation{% endblock %} -{% block lead %}Explain how you would implement your project in the real world.{% endblock %} - -{% block page_content %} - -<div class="row mt-4"> - <div class="col"> - <div class="bd-callout bd-callout-info"> - <h4>Silver Medal Criterion #4</h4> - <p>Explain how you would implement your project in the real world.<p> - <hr> - <p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p> - </div> - </div> -</div> - -{% endblock %} diff --git a/wiki/pages/improve.html b/wiki/pages/improve.html deleted file mode 100644 index 6a74f84..0000000 --- a/wiki/pages/improve.html +++ /dev/null @@ -1,24 +0,0 @@ -{% extends "layout.html" %} - -{% block title %}Improvement of an Existing Part{% endblock %} -{% block lead %}Describe the improvements your team made of an existing part.{% endblock %} - -{% block page_content %} - -<div class="row mt-4"> - <div class="col"> - <div class="bd-callout bd-callout-info"> - <h4>Gold Medal Criterion #2</h4> - <p>Make a new Part that improves the function of an existing Part. This improvement must be distinct from your work for Bronze and Silver medals.</p> - <hr> - <p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p> - </div> - - <div class="bd-callout bd-callout-warning"> - <h4>Note</h4> - <p>You must document your improvement on both the existing and new Parts' Main Pages on the <a href="http://parts.igem.org">Registry</a> for your team to be eligible for this criteria.</p> - </div> - </div> -</div> - -{% endblock %} diff --git a/wiki/pages/inclusivity.html b/wiki/pages/inclusivity.html index 52a4da9..e1b8add 100644 --- a/wiki/pages/inclusivity.html +++ b/wiki/pages/inclusivity.html @@ -12,7 +12,7 @@ <p>The Inclusivity Award recognizes exceptional efforts to include people with diverse identities in scientific research. Who is allowed to have a voice in iGEM, synthetic biology, and science more broadly? How have you developed new opportunities to eliminate barriers and allow more people to contribute to, participate in, and/or be represented by these communities? To compete for this prize, activities do not have to be directly related to your team’s project. Document your approach, how you improved inclusivity, and what was learned.</p> <p>To compete for the Inclusivity award, please describe your work on this page and also fill out the description on the <a href="https://competition.igem.org/deliverables/judging-form">judging form</a>.</p> <hr> - <p>Please see the <a href="https://competition.igem.org/judging/awards">2022 Awards Page</a> for more information.</p> + <p>Please see the <a href="https://competition.igem.org/judging/awards">2023 Awards Page</a> for more information.</p> </div> </div> </div> diff --git a/wiki/pages/measurement.html b/wiki/pages/measurement.html index 9d0760b..af066d8 100644 --- a/wiki/pages/measurement.html +++ b/wiki/pages/measurement.html @@ -8,11 +8,11 @@ <div class="row mt-4"> <div class="col"> <div class="bd-callout bd-callout-info"> - <h4>Best Measurement Special Prize</h4> + <h4>Best Measurement</h4> <p>There are a lot of exciting Parts in the Registry, but many Parts have still not been characterized. Designing great measurement approaches for characterizing new parts, or developing and implementing an efficient new method for characterizing thousands of parts are good examples.</p> <p>To compete for the Best Measurement prize, please describe your work on this page and also fill out the description on the <a href="https://competition.igem.org/deliverables/judging-form">judging form</a>.</p> <hr> - <p>Please see the <a href="https://competition.igem.org/judging/awards">2022 Awards Page</a> for more information.</p> + <p>Please see the <a href="https://competition.igem.org/judging/awards">2023 Awards Page</a> for more information.</p> </div> </div> </div> diff --git a/wiki/pages/model.html b/wiki/pages/model.html index daf21db..cae119f 100644 --- a/wiki/pages/model.html +++ b/wiki/pages/model.html @@ -8,17 +8,11 @@ <div class="row mt-4"> <div class="col"> <div class="bd-callout bd-callout-info"> - <h4>Gold Medal Criterion #3</h4> - <p>Use modeling to gain insight into how your project works or should be implemented. Explain your model's assumptions, data, parameters, and results in a way that anyone could understand.</p> - <hr> - <p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p> - </div> - <div class="bd-callout bd-callout-info"> - <h4>Best Model Special Prize</h4> + <h4>Best Model</h4> <p>Models and computer simulations provide a great way to describe the functioning and operation of BioBrick Parts and Devices. Synthetic biology is an engineering discipline and part of engineering is simulation and modeling to determine system behavior before building your design. Designing and simulating can be iterated many times in a computer before moving to the lab. This award is for teams who build a model of their system and use it to inform system design or simulate expected behavior before or in conjunction with experiments in the wetlab.</p> <p>To compete for the Best Model prize, please describe your work on this page and also fill out the description on the <a href="https://competition.igem.org/deliverables/judging-form">judging form</a>.</p> <hr> - <p>Please see the <a href="https://competition.igem.org/judging/awards">2022 Awards Page</a> for more information.</p> + <p>Please see the <a href="https://competition.igem.org/judging/awards">2023 Awards Page</a> for more information.</p> </div> </div> </div> @@ -28,7 +22,6 @@ <h2>Overview</h2> <hr> <p>Mathematical models and computer simulations provide a great way to describe the function and operation of Parts and Devices. Synthetic Biology is an engineering discipline, and part of engineering is simulation and modeling to determine the behavior of your design before you build it. Designing and simulating can be iterated many times in a computer before moving to the lab.</p> - <p>Please note you can compete for both the Gold Medal criterion #3 and the Best Model prize with this page.</p> </div> <div class="col-lg-4"> <h2>Inspirations</h2> diff --git a/wiki/pages/part-collection.html b/wiki/pages/part-collection.html deleted file mode 100644 index 90f296d..0000000 --- a/wiki/pages/part-collection.html +++ /dev/null @@ -1,25 +0,0 @@ -{% extends "layout.html" %} - -{% block title %}Part Collection{% endblock %} -{% block lead %}Describe your parts collection on this page, so the judges can evaluate you for the Best Part Collection award.{% endblock %} - -{% block page_content %} - -<div class="row mt-4"> - <div class="col"> - <div class="bd-callout bd-callout-info"> - <h4>Best Part Collection Special Prize</h4> - <p>Did your team make a lot of great parts? Is there a theme that ties all your parts together? Do you have more than 10 parts in this collection? Did you make a CRISPR collection, a MoClo collection, or a collection of awesome pigment parts? Describe your parts collection on this page, so the judges can evaluate you for the Best Part Collection award.</p> - <p>To be eligible for this award, each part in the collection must be well documented on the Part's Main Page on the <a href="http://parts.igem.org">Registry</a>. If you have a collection of parts you wish to nominate for this <a href="https://competition.igem.org/judging/awards">special prize</a>, make sure you add your part numbers to your <a href="https://competition.igem.org/deliverables/judging-form">judging form</a> and delete the alert box at the top of this page.</p> - <hr> - <p>Please see the <a href="https://competition.igem.org/judging/awards">2022 Awards Page</a> for more information.</p> - </div> - - <div class="bd-callout bd-callout-warning"> - <h4>Note</h4> - <p>This page should list all the parts in the collection your team made during your project, explaining how all your parts form a collection, and include direct links to your Parts main pages on the <a href="http://parts.igem.org">Registry</a>. <b>You must add all characterization information for your parts on Parts Main Page on the Registry.</b> You should <b>not</b> put characterization information on this page.</p> - </div> - </div> -</div> - -{% endblock %} diff --git a/wiki/pages/partnership.html b/wiki/pages/partnership.html deleted file mode 100644 index a3f84d0..0000000 --- a/wiki/pages/partnership.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends "layout.html" %} - -{% block title %}Partnership{% endblock %} -{% block lead %}Collaborate throughout the year with at least one other 2022 iGEM team on a set of shared objectives related to both of your projects.{% endblock %} - -{% block page_content %} - -<div class="row mt-4"> - <div class="col"> - <div class="bd-callout bd-callout-info"> - <h4>Gold Medal Criterion #5</h4> - <p>Collaborate throughout the year with at least one other 2022 iGEM team on a set of shared objectives related to both of your projects. This partnership should go beyond a Silver medal collaboration.</p> - <hr> - <p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p> - </div> - </div> -</div> - -{% endblock %} diff --git a/wiki/pages/parts.html b/wiki/pages/parts.html deleted file mode 100644 index 0146f68..0000000 --- a/wiki/pages/parts.html +++ /dev/null @@ -1,128 +0,0 @@ -{% extends "layout.html" %} - -{% block title %}Parts{% endblock %} -{% block lead %}This page contains information about the parts created by the team.{% endblock %} - -{% block page_content %} - -<div class="row mt-4"> - <div class="col"> - <h2>Overview</h2> - <hr> - <p>Each team will make new parts during iGEM and will add them to the Registry of Standard Biological Parts</p> - <p>Remember that the goal of proper part documentation is to describe and define a part, so that it can be used without needing to refer to the primary literature. Registry users in future years should be able to read your documentation and be able to use the part successfully. Also, you should provide proper references to acknowledge previous authors and to provide for users who wish to know more.</p> - </div> -</div> - -<div class="row mt-4"> - <div class="col"> - <h2>Table</h2> - <hr> - <p>Please include a table of all the parts your team has made during your project on this page. For example:</p> - <table class="table table-hover"> - <thead> - <tr> - <th scope="col">Name</th> - <th scope="col">Type</th> - <th scope="col">Description</th> - <th scope="col">Designers</th> - <th scope="col">Length</th> - </tr> - </thead> - <tbody> - <tr> - <td><a href="http://parts.igem.org/Part:BBa_B0011">BBa_B0011</a></th> - <td>Terminator</td> - <td>LuxICDABEG (+/-)</td> - <td>Reshma Shetty</td> - <td>46 bp</td> - </tr> - <tr> - <td><a href="http://parts.igem.org/Part:BBa_C0012">BBa_C0012</a></th> - <td>Coding lacI</td> - <td>lacI repressor from E. coli (+LVA)</td> - <td>Grace Kenney, Daniel Shen, Neelaksh Varshney, Samantha Sutton</td> - <td>1153 bp</td> - </tr> - <tr> - <td><a href="http://parts.igem.org/Part:BBa_E0020">BBa_E0020</a></th> - <td>Coding ecfp</td> - <td>engineered cyan fluorescent protein derived from A. victoria GFP</td> - <td>Caitlin Conboy and Jennifer Braff</td> - <td>723 bp</td> - </tr> - </tbody> - </table> - </div> -</div> - -<div class="row mt-4"> - <div class="col"> - <div class="bd-callout bd-callout-warning"> - <h4>Note</h4> - <p>Parts must be well documented on each Part's Main Page on the <a href="http://parts.igem.org">Registry</a>. This documentation includes all of the characterization data for your parts. <b>The part's data MUST be on the part's Main Page on the Registry for your team to be eligible for medals and special prizes pertaining to parts.</b></p> - <p>This page serves to <i>showcase</i> the parts you have made and should include links to the Registry pages for your parts. Future teams and other users are much more likely to find parts by looking in the Registry than by looking at your team wiki.</p> - </div> - </div> -</div> - -<div class="row mt-4"> - <div class="col"> - <h2>Adding parts to the Registry</h2> - <hr> - <p>You can add parts to the Registry at our <a href="http://parts.igem.org/Add_a_Part_to_the_Registry">Add a Part to the Registry</a> page.</p> - <p>We encourage teams to start adding and documenting their parts on the Registry as soon as they can. Once you add your parts to the Registry, you can continue to add documentation to them throughout the iGEM season (up until the Registry freeze). This will allow you to remember all the details about your parts and store their history in the wiki. Documentation includes the characterization data of your parts.</p> - <a class="btn btn-primary" href="http://parts.igem.org/Add_a_Part_to_the_Registry" role="button">Add Parts</a> - </div> -</div> - -<div class="row mt-4"> - <div class="col"> - <h2>Basic Part Inspirations</h2> - <hr> - <p>We have a created a <a href="http://parts.igem.org/Well_Documented_Parts">collection of well documented parts</a> that can help you get started.</p> - <p>You can also take a look at the following examples for Basic Parts on the Registry:</p> - <ul> - <li><a href="http://parts.igem.org/Part:BBa_K3114006">2019 Calgary </a></li> - <li><a href="http://parts.igem.org/Part:BBa_K3027000">2019 GO Paris Saclay</a></li> - <li><a href="http://parts.igem.org/Part:BBa_K3187028">2019 TU Darmstadt</a></li> - <li><a href="http://parts.igem.org/Part:BBa_K3552000">2020 Links China</a></li> - <li><a href="http://parts.igem.org/Part:BBa_K3558000">2020 UNSW Australia</a></li> - <li><a href="http://parts.igem.org/Part:BBa_K3338002">2020 Hannover</a></li> - </ul> - </div> - <div class="col"> - <h2>Composite Part Inspirations</h2> - <hr> - <p>We have a created a <a href="http://parts.igem.org/Well_Documented_Parts">collection of well documented parts</a> that can help you get started.</p> - <p>You can also take a look at the following examples for Composite Parts on the Registry:</p> - <ul> - <li><a href="http://parts.igem.org/Part:BBa_K3198007">2019 NUS Singapore </a></li> - <li><a href="http://parts.igem.org/Part:BBa_K2932003">2019 Mingdao</a></li> - <li><a href="http://parts.igem.org/Part:BBa_K2980009">2019 Tsinghua</a></li> - <li><a href="http://parts.igem.org/Part:BBa_K3407022">2020 TUDelft</a></li> - <li><a href="http://parts.igem.org/Part:BBa_K3380500">2020 Edinburgh</a></li> - <li><a href="http://parts.igem.org/Part:BBa_K3512042">2020 BITSPilani Goa India</a></li> - </ul> - </div> -</div> - -<div class="row mt-4"> - <div class="col"> - <h2>What information do I need to start putting my parts on the Registry?</h2> - <hr> - <p>The information needed to initially create a part on the Registry is:</p> - <ul> - <li>Part Name</li> - <li>Part type</li> - <li>Creator</li> - <li>Sequence</li> - <li>Short Description (60 characters on what the DNA does)</li> - <li>Long Description (Longer description of what the DNA does)</li> - <li>Design considerations</li> - </ul> - <p>We encourage you to put up <em>much more</em> information as you gather it over the summer. If you have images, plots, characterization data and other information, you must also put it up on the part page.</p> - </div> -</div> - -{% endblock %} diff --git a/wiki/pages/plant.html b/wiki/pages/plant.html index 0bf7c7b..7a77bef 100644 --- a/wiki/pages/plant.html +++ b/wiki/pages/plant.html @@ -8,11 +8,11 @@ <div class="row mt-4"> <div class="col"> <div class="bd-callout bd-callout-info"> - <h4>Best Plant Synthetic Biology Special Prize</h4> + <h4>Best Plant Synthetic Biology</h4> <p>This award is designed to celebrate exemplary work done in plant synthetic biology. Did you build a project in a plant chassis? Did you submit plant parts to the Registry? This award could also be given to a team working with algae or another photosynthetic chassis. Show us what you made and remember to adhere to iGEM safety guidelines!</p> <p>To compete for the Best Plant Synthetic Biology prize, please describe your work on this page and also fill out the description on the <a href="https://competition.igem.org/deliverables/judging-form">judging form</a>.</p> <hr> - <p>Please see the <a href="https://competition.igem.org/judging/awards">2022 Awards Page</a> for more information.</p> + <p>Please see the <a href="https://competition.igem.org/judging/awards">2023 Awards Page</a> for more information.</p> </div> </div> </div> diff --git a/wiki/pages/proof-of-concept.html b/wiki/pages/proof-of-concept.html deleted file mode 100644 index 509c155..0000000 --- a/wiki/pages/proof-of-concept.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends "layout.html" %} - -{% block title %}Proof of Concept{% endblock %} -{% block lead %}Expand upon your Silver medal work for Proposed Implementation and develop a proof of concept for your project.{% endblock %} - -{% block page_content %} - -<div class="row mt-4"> - <div class="col"> - <div class="bd-callout bd-callout-info"> - <h4>Gold Medal Criterion #4</h4> - <p>Expand upon your Silver medal work for Proposed Implementation and develop a proof of concept for your project.<p> - <hr> - <p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p> - </div> - </div> -</div> - -{% endblock %} diff --git a/wiki/pages/safety.html b/wiki/pages/safety.html index a12952a..3e7d1ed 100644 --- a/wiki/pages/safety.html +++ b/wiki/pages/safety.html @@ -9,10 +9,10 @@ <div class="col"> <div class="bd-callout bd-callout-info"> <h4>Safety and Security Award</h4> - <p>Synthetic biology will need to be used safely and securely if local people are to solve local problems all around the world. In 2022, the Safety and Security Committee is challenging teams to apply biological engineering approaches to manage risks associated with synthetic biology. Can you take the next step in incremental progress towards knowledge, understanding, and tools that will make the use of synthetic biology safer and more secure?</p> + <p>Synthetic biology will need to be used safely and securely if local people are to solve local problems all around the world. The Safety and Security Committee is challenging teams to apply biological engineering approaches to manage risks associated with synthetic biology. Can you take the next step in incremental progress towards knowledge, understanding, and tools that will make the use of synthetic biology safer and more secure?</p> <p>To compete for the Safety and Security award, please describe your work on this page and also fill out the description on the <a href="https://competition.igem.org/deliverables/judging-form">judging form</a>.</p> <hr> - <p>Please see the <a href="https://competition.igem.org/judging/awards">2022 Awards Page</a> for more information.</p> + <p>Please see the <a href="https://competition.igem.org/judging/awards">2023 Awards Page</a> for more information.</p> </div> </div> </div> diff --git a/wiki/pages/software.html b/wiki/pages/software.html index b3570d0..a4e352b 100644 --- a/wiki/pages/software.html +++ b/wiki/pages/software.html @@ -8,11 +8,11 @@ <div class="row mt-4"> <div class="col"> <div class="bd-callout bd-callout-info"> - <h4>Best Software Tool Special Prize</h4> - <p>Regardless what's the topic, iGEM projects often create or adapt computational tools to move the bigger project forward. Because they are born out of a direct practical need, these software tools (or new computational methods) can even prove surprisingly useful for others. Without necessarily being big or complex, they can make the crucial difference to a project's success. This award tries to find and honor such "nuggets" of computational work. To be eligible, your software has to be documented and made available under an OSI-approved open source license. Teams nominating themselves for this prize must submit their code to the iGEM Github.</p> + <h4>Best Software Tool</h4> + <p>Regardless what's the topic, iGEM projects often create or adapt computational tools to move the bigger project forward. Because they are born out of a direct practical need, these software tools (or new computational methods) can even prove surprisingly useful for others. Without necessarily being big or complex, they can make the crucial difference to a project's success. This award tries to find and honor such "nuggets" of computational work. To be eligible, your software has to be documented and made available under an OSI-approved open source license. Teams nominating themselves for this prize must host the source code of their software on the dedicated repository on iGEM's GitLab.</p> <p>To compete for the Best Software Tool prize, please describe your work on this page and also fill out the description on the <a href="https://competition.igem.org/deliverables/judging-form">judging form</a>.</p> <hr> - <p>Please see the <a href="https://competition.igem.org/judging/awards">2022 Awards Page</a> for more information.</p> + <p>Please see the <a href="https://competition.igem.org/judging/awards">2023 Awards Page</a> for more information.</p> </div> </div> </div> diff --git a/wiki/pages/sustainable.html b/wiki/pages/sustainable.html index 500b99a..e209db3 100644 --- a/wiki/pages/sustainable.html +++ b/wiki/pages/sustainable.html @@ -8,11 +8,11 @@ <div class="row mt-4"> <div class="col"> <div class="bd-callout bd-callout-info"> - <h4>Best Sustainable Development Special Prize</h4> + <h4>Best Sustainable Development</h4> <p>The Sustainable Development Goals (SDGs) are a call to action to integrally address global environmental, social, and economic challenges. As the future leaders of synthetic biology research and innovation, it’s your responsibility to participate in the global conversations to help develop solutions towards meeting the SDGs. We encourage you to demonstrate how you have evaluated your project ideas against one or more of the SDGs, how you’ve consulted with SDG stakeholders, and how you’ve begun to form collaborations with other iGEM teams around the SDGs. You’re encouraged to look back at previous iGEM projects to evaluate them against the SDGs and build upon them.</p> - <p>To compete for the Best Best Sustainable Development prize, please describe your work on this page and also fill out the description on the <a href="https://competition.igem.org/deliverables/judging-form">judging form</a>.</p> + <p>To compete for the Best Sustainable Development prize, please describe your work on this page and also fill out the description on the <a href="https://competition.igem.org/deliverables/judging-form">judging form</a>.</p> <hr> - <p>Please see the <a href="https://competition.igem.org/judging/awards">2022 Awards Page</a> for more information.</p> + <p>Please see the <a href="https://competition.igem.org/judging/awards">2023 Awards Page</a> for more information.</p> </div> </div> </div> diff --git a/wiki/wiki-tools.html b/wiki/wiki-tools.html deleted file mode 100644 index 361758d..0000000 --- a/wiki/wiki-tools.html +++ /dev/null @@ -1,45 +0,0 @@ -<style> - .wiki-tools-footer { - --bs-gutter-x: 1.5rem; - background: #222124; - margin: 0; - max-width: 100%; - padding: 1rem 3rem; - display: flex; - gap: 1.5em; - } - .wiki-tools-footer a { - text-decoration: none; - color: white; - font-weight: 400; - transition: color 0.3s; - } - .wiki-tools-footer a:hover { - color: #08C784; - } - .wiki-tools-footer img { - object-fit: contain; - } -</style> - -<section class="wiki-tools-footer container"> - <a id="wiki-tools-link">Access Wiki Tools</a> - <a id="wiki-tools-repo">View Source Code</a> - <img id="wiki-tools-pipeline"> -</section> - -<script> - const wikiToolsLink = document.getElementById('wiki-tools-link') - const wikiToolsRepo = document.getElementById('wiki-tools-repo') - const wikiToolsPipeline = document.getElementById('wiki-tools-pipeline') - - const path = document.location.pathname.split('/') - - const competitionSlug = document.location.host.split('.')[0] - const teamSlug = path[1] - const page = path[2] === '' ? 'index' : path[2] - - wikiToolsLink.href = `https://tools.igem.org/wiki-tools/${competitionSlug}/${teamSlug}/${page}` - wikiToolsRepo.href = `https://gitlab.igem.org/${competitionSlug}/${teamSlug}` - wikiToolsPipeline.src = `https://gitlab.igem.org/${competitionSlug}/${teamSlug}/badges/main/pipeline.svg` -</script> -- GitLab