aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/static/bg.pngbin0 -> 521869 bytes
-rw-r--r--app/static/bg_blur.jpgbin0 -> 101961 bytes
-rw-r--r--app/templates/about.html10
-rw-r--r--app/templates/base.html16
4 files changed, 17 insertions, 9 deletions
diff --git a/app/static/bg.png b/app/static/bg.png
new file mode 100644
index 0000000..fb2c09f
--- /dev/null
+++ b/app/static/bg.png
Binary files differ
diff --git a/app/static/bg_blur.jpg b/app/static/bg_blur.jpg
new file mode 100644
index 0000000..dd8cc79
--- /dev/null
+++ b/app/static/bg_blur.jpg
Binary files differ
diff --git a/app/templates/about.html b/app/templates/about.html
index d9e1c70..23ffc28 100644
--- a/app/templates/about.html
+++ b/app/templates/about.html
@@ -1,7 +1,11 @@
{% extends 'base.html' %}
{% block main %}
- <h2>About Curie Web</h2>
- <p>The Page you are looking for cannot be found</p>
- <p>Go Back <a href="{{ url_for('home') }}">home</a></p>
+ <h1>About Curie Web</h1>
+ <p>Curie Web is a web interface for my private Python Library called "Curie", with some aditional superpowers.</p>
+ <h4>Dock and Report</h4>
+ <p>This module uses AutoDock Vina to perform molecular docking on the specified molecular docking. It then uses PyMOL
+ to create high quality ray-traced visualisations. After finding and tabulating protein ligand interactions using PLIP,
+ it creates a PDF and emails you the report ( Along with supporting files )</p>
+
{% endblock %} \ No newline at end of file
diff --git a/app/templates/base.html b/app/templates/base.html
index 8c6b030..e8adc2e 100644
--- a/app/templates/base.html
+++ b/app/templates/base.html
@@ -21,7 +21,11 @@
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="{{ url_for('home') }}">Home <span class="sr-only">(current)</span></a>
- </li><!--
+ </li>
+ <li class="nav-item">
+ <a class="nav-link" href="{{ url_for('about') }}">About</a>
+ </li>
+ <!--
<li class="nav-item">
<a class="nav-link" href="{{ url_for('basic_form') }}">Basic Form</a>
</li>
@@ -34,9 +38,9 @@
</ul>
</div>
</nav>
- <header class="jumbotron jumbotron-fluid">
+ <header class="jumbotron jumbotron-fluid" style="background: url({{ url_for('static',filename='bg_blur.jpg')}}) no-repeat center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;">
<div class="container">
- <h1>Curie Web</h1>
+ <h1 style="color: white;">Curie Web</h1>
</div>
</header>
<main>
@@ -49,8 +53,8 @@
Copyright &copy; 2020
</footer>
- <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
+ <script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
+ <!--<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>-->
+ <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
</body>
</html> \ No newline at end of file