1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
cyberplanificateur/app/templates/template.html

72 lines
2.8 KiB
HTML

<!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>
<!--<header class="intro-header" style="background-image: url('static/images/banner.jpg')">-->
</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 current_user.is_authenticated %}
<li><a href="{{ url_for('dashboard') }}">Dashboard</a></li>
<li><a href="{{ url_for('settings')}}">Settings</a></li>
<li><a href="{{ url_for('logout')}}">Log Out</a></li>
{% else %}
<li><a href="{{ url_for('login')}}">Log In</a></li>
{% endif %}
</ul>
</div>
</li>
</ul>
</nav>
</header>
{% block content %}
{% endblock %}
<!-- Footer -->
<footer id="footer">
<ul class="icons">
<li><a href="https://github.com/flifloo" class="icon fa-github"><span class="label">GitHub</span></a></li>
<li><a href="https://t.me/flifloo" class="icon fa-telegram"><span class="label">Twitter</span></a></li>
<li><a href="https://twitter.com/flifloo__" class="icon fa-twitter"><span class="label">Twitter</span></a></li>
</ul>
<ul class="copyright">
<li>&copy; Cyberplanificateur</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>