2020-07-13 03:13:36 +05:30
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
{% if title %}
|
|
|
|
<title>{{ title }} - Parassiter</title>
|
|
|
|
{% else %}
|
2020-07-27 18:30:01 +05:30
|
|
|
<title>Parasitter</title>
|
2020-07-13 03:13:36 +05:30
|
|
|
{% endif %}
|
|
|
|
<link rel= "stylesheet" type= "text/css" href= "{{ url_for('static',filename='semantic/semantic.min.css') }}">
|
2020-08-05 02:48:59 +05:30
|
|
|
<link rel="stylesheet" type= "text/css" href="{{ url_for('static',filename='styles.css') }}">
|
2020-07-13 03:13:36 +05:30
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="ui stackable menu">
|
|
|
|
<div class="item">
|
|
|
|
<img src="{{ url_for('static',filename='img/logo.png') }}">
|
|
|
|
</div>
|
|
|
|
{% if current_user.is_anonymous %}
|
|
|
|
<a href="{{ url_for('login') }}" class="item">Login</a>
|
|
|
|
{% else %}
|
2020-08-24 16:18:44 +05:30
|
|
|
<a href="{{ url_for('index') }}" class="twitter item">Twitter</a>
|
2020-07-27 18:30:01 +05:30
|
|
|
<a href="{{ url_for('search') }}" class="twitter item">Search</a>
|
|
|
|
<a href="{{ url_for('saved') }}" class="twitter item">Saved</a>
|
2020-08-17 01:17:18 +05:30
|
|
|
<a href="{{ url_for('youtube') }}" class="youtube item">Youtube</a>
|
2020-07-29 14:34:00 +05:30
|
|
|
<a href="{{ url_for('ytsearch') }}" class="youtube item">Search</a>
|
2020-07-27 18:30:01 +05:30
|
|
|
<a href="{{ url_for('logout') }}" class="item">Logout</a>
|
|
|
|
<a href="{{ url_for('settings') }}" class="item"><i class="cog icon"></i></a>
|
2020-07-13 03:13:36 +05:30
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% with messages = get_flashed_messages() %}
|
|
|
|
{% if messages %}
|
2020-07-14 17:54:43 +05:30
|
|
|
<div class="ui info message">
|
2020-07-13 03:13:36 +05:30
|
|
|
<div class="header">
|
|
|
|
Information
|
|
|
|
</div>
|
|
|
|
<ul class="list">
|
|
|
|
{% for message in messages %}
|
|
|
|
<li>{{ message }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
|
|
|
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</body>
|
|
|
|
</html>
|