2018-06-26 05:23:53 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Calendar.Social</title>
|
2018-07-01 05:24:44 +00:00
|
|
|
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='images/calendar-social-icon-16.png') }}">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='images/calendar-social-icon-32.png') }}">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='images/calendar-social-icon-96.png') }}">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='images/calendar-social-icon-192.png') }}">
|
|
|
|
|
2018-07-13 11:26:08 +00:00
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.1.0/css/fork-awesome.min.css" integrity="sha256-sX8HLspqYoXVPetzJRE4wPhIhDBu2NB0kYpufzkQSms=" crossorigin="anonymous">
|
|
|
|
|
2018-07-13 06:58:12 +00:00
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}" type="text/css">
|
2018-07-13 07:34:56 +00:00
|
|
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
2018-07-13 06:58:12 +00:00
|
|
|
{% block head %}{% endblock %}
|
2018-06-26 05:23:53 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
2018-07-01 05:24:44 +00:00
|
|
|
<h1>
|
|
|
|
<img src="{{ url_for('static', filename='images/calendar-social-icon.svg') }}">
|
|
|
|
Calendar.social
|
|
|
|
</h1>
|
2018-06-29 06:03:49 +00:00
|
|
|
<nav class="menu">
|
2018-06-29 11:59:58 +00:00
|
|
|
{% if current_user.is_authenticated %}
|
2018-07-09 07:57:23 +00:00
|
|
|
{{ _('Logged in as %(username)s', username=('<a href="' + url_for('display_profile', username=current_user.username) + '">' + current_user.username + '</a>') | safe) }}
|
2018-06-29 11:59:58 +00:00
|
|
|
{% endif %}
|
2018-06-29 06:03:49 +00:00
|
|
|
<ul>
|
|
|
|
{% if not current_user.is_authenticated %}
|
|
|
|
<li><a href="{{ url_for('security.login') }}">{% trans %}Login{% endtrans %}</a></li>
|
|
|
|
{% else %}
|
2018-06-30 04:44:45 +00:00
|
|
|
<li><a href="{{ url_for('hello') }}">{% trans %}Calendar view{% endtrans %}</a></li>
|
2018-07-10 08:28:39 +00:00
|
|
|
<li><a href="{{ url_for('notifications') }}">{% trans %}Notifications{% endtrans %}</a></li>
|
2018-07-03 11:15:17 +00:00
|
|
|
<li><a href="{{ url_for('settings') }}">{% trans %}Settings{% endtrans %}</a></li>
|
2018-07-10 08:28:39 +00:00
|
|
|
<li><a href="{{ url_for('security.logout') }}">{% trans %}Logout{% endtrans %}</a></li>
|
2018-06-29 06:03:49 +00:00
|
|
|
{% endif %}
|
|
|
|
</ul>
|
|
|
|
</nav>
|
2018-06-26 05:23:53 +00:00
|
|
|
</header>
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
<footer>
|
|
|
|
Soon…™
|
|
|
|
</footer>
|
|
|
|
{% block scripts %}{% endblock %}
|
|
|
|
</body>
|
|
|
|
</html>
|