From 647522afdb17c0fd8c4ee0737f77ebbc3f208912 Mon Sep 17 00:00:00 2001 From: afil01 <afil016999@gmail.com> Date: Mon, 16 Sep 2024 19:58:51 +0200 Subject: [PATCH] Test commit --- docs/.vuepress/components/TeamPage.vue | 4 +++ docs/.vuepress/config.js | 4 +-- docs/attributions.md | 44 ++++++++++++++++++++++++++ 3 files changed, 50 insertions(+), 2 deletions(-) create mode 100644 docs/attributions.md diff --git a/docs/.vuepress/components/TeamPage.vue b/docs/.vuepress/components/TeamPage.vue index a6ea629..bdf3a16 100644 --- a/docs/.vuepress/components/TeamPage.vue +++ b/docs/.vuepress/components/TeamPage.vue @@ -145,7 +145,11 @@ profileImage="https://static.igem.wiki/teams/5306/profile-image-erik.png" name="Erik Steen Redeker" role="Principal Supervisor" + email="erik.steenredeker@maastrichtuniversity.nl" nationality="Dutch" + scientist="Richard Dawkins" + microorganism="Deinococcus radiodurans, a polyextremophile also known as Conan the Bacterium" + why_igem="The societal impact of synthetic biology is already significant but this field is gaining more and more attention and importance and there is no reason to think this will change any time soon. There is no better moment than ‘now’ to be part of it. iGem has everything that keeps me excited about synthetic biology and science in general. It’s open, creative, and multidisciplinary. It educates and informs people and is there to solve issues in society. Oh, and it’s also fun! As a supervisor and educator, I am always blown away by the incredible things a team can accomplish in a relatively short time. I love to see the team grow from the first meeting and become real scientists at the end of the iGEM journey. It makes me proud to be a small part of that process." /> <TeamCard diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 0a9d24e..ed09ba3 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -13,7 +13,7 @@ export default defineUserConfig({ dest: 'public', base: "/msp-maastricht/", theme: hopeTheme({ - logo: '/images/logo/logo_linear.png', + logo: 'https://static.igem.wiki/teams/5306/logo-linear.png', home: "/", navbar: [ { text: 'Home', link: '/' }, @@ -21,7 +21,7 @@ export default defineUserConfig({ text: 'Team', children: [ { text: 'Team', link: '/team' }, - { text: 'Attributions', link: '/attributions/' } + { text: 'Attributions', link: '/attributions' } ] }, { diff --git a/docs/attributions.md b/docs/attributions.md new file mode 100644 index 0000000..b2e3bf5 --- /dev/null +++ b/docs/attributions.md @@ -0,0 +1,44 @@ +Teams must use the standard Attributions form. To meet the attributions requirement, you must display the standard form on your Wiki by following the instructions here: [Project Attribution page](https://competition.igem.org/deliverables/project-attribution). + +--- + +### Bronze Medal Criterion #2 + +Describe what work your team members did and what other people did for your project. + +The form that has been embedded in an iframe below shows your team's Project Attribution form. This page must keep the form as it is. + +If you use a different website framework, make sure to embed the right URL for your team's form. + +--- + +<!-- + ====================================================================== + == 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"> + <script type="text/javascript"> + // Listen to size change and update form height + window.addEventListener("message", function (e) { + if (e.origin === "https://teams.igem.org") { + const {type, data} = JSON.parse(e.data); + if (type === "igem-attribution-form") { + const element = document.getElementById("igem-attribution-form"); + element.style.height = `${data + 100}px`; + } + } + }); + </script> + <iframe + style='width: 100%' + id="igem-attribution-form" + src="https://teams.igem.org/wiki/5306/attributions"> + > + </iframe> + <!-- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ --> +</div> -- GitLab