<!DOCTYPE HTML> <!-- Spectral by HTML5 UP html5up.net | @ajlkn Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) --> <html> <head> <title>Cyberplanificateur</title> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" /> <link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}" /> <noscript><link rel="stylesheet" href="{{ url_for('static', filename='css/noscript.css') }}" /></noscript> </head> <body class="landing is-preload"> <!-- Page Wrapper --> <div id="page-wrapper"> <!-- Header --> <header id="header" class="alt"> <h1><a href="index.html">Cyberplanificateur</a></h1> <nav id="nav"> <ul> <li class="special"> <a href="#menu" class="menuToggle"><span>Menu</span></a> <div id="menu"> <ul> <li><a href="{{ url_for('home') }}">Home</a></li> {% if login %} <li><a href="{{ url_for('settings')}}">Settings</a></li> <li><a href="{{ url_for('twlogout')}}">Log Out</a></li> {% else %} <li><a href="{{ url_for('twlogin')}}">Log In</a></li> {% endif %} </ul> </div> </li> </ul> </nav> </header> {% block content %} {% endblock %} <!-- Footer --> <footer id="footer"> <ul class="icons"> <li><a href="#" class="icon fa-twitter"><span class="label">Twitter</span></a></li> <li><a href="#" class="icon fa-facebook"><span class="label">Facebook</span></a></li> <li><a href="#" class="icon fa-instagram"><span class="label">Instagram</span></a></li> <li><a href="#" class="icon fa-dribbble"><span class="label">Dribbble</span></a></li> <li><a href="#" class="icon fa-envelope-o"><span class="label">Email</span></a></li> </ul> <ul class="copyright"> <li>© Untitled</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li> </ul> </footer> </div> <!-- Scripts --> <script src="{{ url_for('static', filename='js/jquery.min.js') }}"></script> <script src="{{ url_for('static', filename='js/jquery.scrollex.min.js') }}"></script> <script src="{{ url_for('static', filename='js/jquery.scrolly.min.js') }}"></script> <script src="{{ url_for('static', filename='js/browser.min.js') }}"></script> <script src="{{ url_for('static', filename='js/breakpoints.min.js') }}"></script> <script src="{{ url_for('static', filename='js/util.js') }}"></script> <script src="{{ url_for('static', filename='js/main.js') }}"></script> </body> </html>