Açıklama Yok

bootstrapheader.html 1.0KB

123456789101112131415161718192021222324252627
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <link rel="stylesheet" href="{{url_for('static', filename='bootstrap/css/bootstrap.min.css')}}">
  5. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
  6. <script src="{{url_for('static', filename='bootstrap/js/bootstrap.min.js')}}"></script>
  7. {% if request.path =="/experiment" %}
  8. <script src="{{url_for('static', filename='dropzone.js')}}"></script>
  9. <link rel=stylesheet type=text/css href="{{url_for('static', filename='dropzone.css')}}">
  10. <script src="{{url_for('static', filename='Chart.js/Chart.js')}}"></script>
  11. {% endif %}
  12. </head>
  13. <div class="container">
  14. <ul class="nav nav-pills">
  15. <li {% if request.path =="/" %} class="active" {% endif %}><a href="/">Home</a></li>
  16. <li {% if request.path =="/profile" %} class="active" {% endif %}><a href="/profile">Profile</a></li>
  17. {% if request.path == "/editExperiment" %}<li><a href="/experiment">Back to Experiment</a></li> {% endif %}
  18. <li><a href="/logout">Logout</a></li>
  19. </ul>
  20. </div>
  21. {% block body%} {% endblock %}
  22. </html>