Skip to content
Snippets Groups Projects
Commit d036c6bc authored by Katie Spivakovsky's avatar Katie Spivakovsky
Browse files

home animation

parent a0ab7106
No related branches found
No related tags found
No related merge requests found
Pipeline #221165 passed
{% extends "layout.html" %}
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="https://static.igem.wiki/common/icons/favicons/igem-2022.svg"/>
<link rel="license" href="https://creativecommons.org/licenses/by/4.0/"/>
<!-- Custom CSS -->
<link href="{{ url_for('static', filename = 'style.css') }}" rel="stylesheet">
<!-- Bootstrap CSS -->
<link href="{{ url_for('static', filename = 'bootstrap.min.css') }}" rel="stylesheet">
<title>{% block title %}{% endblock %} | MIT - iGEM 2023</title>
</head>
<body>
<!-- Navigation -->
{% include 'menu.html' %}
<header id='home-header-container' class="bg-hero py-5 mb-5">
<div class="container h-100">
......@@ -11,7 +32,7 @@
</div>
</header>
{% block page_content %}
<div class="container" style="min-height:100vh;display:flex;flex-direction:column">
<div class="d-flex flex-row justify-content-center mw-100" style="gap:100px">
<div class="col">
......@@ -74,4 +95,19 @@
<li id="cite3">Narsale, Aditi A., and James A. Carson. “Role of Interleukin-6 in Cachexia.” <em>Current Opinion in Supportive &amp; Palliative Care</em>, vol. 8, no. 4, 2014, pp. 321–327, <a href="https://doi.org/10.1097/spc.0000000000000091" target="_blank">https://doi.org/10.1097/spc.0000000000000091</a>.</li>
</ol>
{% endblock %}
<!-- Footer: MUST mention license AND have a link to team wiki's repository on gitlab.igem.org -->
{% include 'footer.html' %}
<!-- katie added general jQuery script (not her own duh) -->
<script src="{{ url_for('static', filename = 'scripts/jquery.js') }}"></script>
<!-- katie added jQuery UI script for yummier animations! (not her own duh)-->
<script src="{{ url_for('static', filename = 'scripts/jquery-ui.js') }}"></script>
<!-- Bootstrap Bundle with Popper (v5) (comes originally with iGEM template)-->
<script src="{{ url_for('static', filename = 'bootstrap.bundle.min.js') }}"></script>
<!-- katie's javascript functions -->
<script src="{{ url_for('static', filename = 'scripts/functions.js') }}"></script>
</div>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment