diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-06-25 23:19:22 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2020-06-25 23:19:22 +0530 |
commit | f70e376482efcec78f031d80bb788e6fca65470d (patch) | |
tree | 660f184dff0ad708961bd33a4baafbf0a9767fe8 /app | |
parent | 100f1d8b55bd21b3fe05f6330d0a00da4929b8f8 (diff) |
added image as header background, updated about page
Diffstat (limited to 'app')
-rw-r--r-- | app/static/bg.png | bin | 0 -> 521869 bytes | |||
-rw-r--r-- | app/templates/about.html | 10 | ||||
-rw-r--r-- | app/templates/base.html | 4 |
3 files changed, 9 insertions, 5 deletions
diff --git a/app/static/bg.png b/app/static/bg.png Binary files differnew file mode 100644 index 0000000..fb2c09f --- /dev/null +++ b/app/static/bg.png 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 7711512..1567d82 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -38,9 +38,9 @@ </ul> </div> </nav> - <header class="jumbotron jumbotron-fluid"> + <header class="jumbotron jumbotron-fluid" style="background: url({{ url_for('static',filename='bg.png')}}) 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> |