diff options
Diffstat (limited to 'app/templates')
-rw-r--r-- | app/templates/base.html | 31 |
1 files changed, 28 insertions, 3 deletions
diff --git a/app/templates/base.html b/app/templates/base.html index 5d90d74..d116ee3 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -4,6 +4,7 @@ <meta charset="UTF-8"> <title>Curie Web</title> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootswatch/4.5.2/solar/bootstrap.min.css"> + <link rel="stylesheet" href= href="{{ url_for('static', filename='css/solar.css') }}"> <link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}"> <link rel="apple-touch-icon" sizes="180x180" href="{{ url_for('static', filename='favicons/apple-touch-icon.png') }}"> <link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='favicons/favicon-32x32.png') }}"> @@ -60,9 +61,33 @@ {% endblock %} </div> </main> - <footer class="text-muted text-center text-small"> - Copyright © 2020 - </footer> + <div class="footer-dark"> + <footer> + <div class="container"> + <div class="row"> + <div class="col-sm-6 col-md-3 item"> + <h3>Features</h3> + <ul> + <li><a href="#">Dock and Report</a></li> + <li><a href="#">PubMed Search</a></li> + </ul> + </div> + <div class="col-sm-6 col-md-3 item"> + <h3>Beta Features</h3> + <ul> + <li><a href="#">LSTM Generator</a></li> + <li><a href="#">Visualiser</a></li> + </ul> + </div> + <div class="col-md-6 item text"> + <h3>About The Curie Project</h3> + <p>The Curie Project aims to make the process of CADD from ideation to in-silico testing as easy as possible.</p> + </div> + </div> + <p class="copyright">Copyright © 2020</p> + </div> + </footer> + </div> <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>--> |