diff --git a/docs/.vuepress/components/TeamPage.vue b/docs/.vuepress/components/TeamPage.vue index a6ea62918aaa9e097e774963ee72da42b1ede206..bdf3a162d88f3e17571f3e58f49229c60a9d33df 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 0a9d24ea94c80b92b9023e92d098f274ec72c0b6..ed09ba3ce77ccebf0f47045d8e46872537502f4e 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 0000000000000000000000000000000000000000..b2e3bf5c55bb70608c114a3054f01cc08f89ae81 --- /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>