MarketMindP / templates /base.html
AronWolverine's picture
initial
56bd117
raw
history blame contribute delete
698 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{% block title %}Stock APP AR - MarketMind{% endblock %}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
<nav>
<ul>
<li><a href="{{ url_for('home') }}">Home</a></li>
<li><a href="{{ url_for('login') }}">Login</a></li>
<li><a href="{{ url_for('fundamentals') }}">Fundamentals</a></li>
<li><a href="{{ url_for('movers') }}">Market Movers</a></li>
<li><a href="{{ url_for('news') }}">News</a></li>
<li><a href="{{ url_for('predict') }}">Predict</a></li>
</ul>
</nav>
{% block content %}{% endblock %}
</body>
</html>