2017-03-25 08:52:56 +01:00
|
|
|
<!DOCTYPE html>
|
2017-07-14 06:04:04 +02:00
|
|
|
<html prefix="og: http://ogp.me/ns#">
|
2017-03-25 08:52:56 +01:00
|
|
|
<head>
|
|
|
|
<!--Import Google Icon Font-->
|
2017-04-08 09:43:37 +02:00
|
|
|
<link href="//fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
2017-03-25 08:52:56 +01:00
|
|
|
<!--Import materialize.css-->
|
2017-04-08 09:43:37 +02:00
|
|
|
<link type="text/css" rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/materialize/0.98.1/css/materialize.min.css" integrity="sha256-6DQKO56c9MZL0LAc7QNtxqJyqSa3rS9Gq5FVcIhtA+w=" crossorigin="anonymous" media="screen,projection"/>
|
2017-03-25 08:52:56 +01:00
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
|
|
|
|
|
|
|
<!--Let browser know website is optimized for mobile-->
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
|
|
|
2017-07-14 06:04:04 +02:00
|
|
|
<title>{{ title }} - Titan Embeds for Discord</title>
|
2017-05-19 00:41:41 +02:00
|
|
|
|
|
|
|
{% include 'seo_meta.html.j2' %}
|
|
|
|
|
2017-07-14 06:04:04 +02:00
|
|
|
{% with title=title, description="Embed your Discord server in any website. Titan is hassle free and designed as easy to setup." %}
|
|
|
|
{% include "opengraph_tags.html.j2" %}
|
|
|
|
{% endwith %}
|
|
|
|
|
2017-04-23 08:55:03 +02:00
|
|
|
{% block additional_head_elements %}{% endblock %}
|
|
|
|
|
2017-04-09 20:43:45 +02:00
|
|
|
{% include 'google_analytics.html.j2' %}
|
2017-03-25 08:52:56 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
2017-06-13 03:39:49 +02:00
|
|
|
{% include 'nobot_header.html.j2' %}
|
2017-03-25 08:52:56 +01:00
|
|
|
<main>
|
|
|
|
{% if session['unauthenticated'] is defined and not session['unauthenticated'] %}
|
|
|
|
<ul id="menu_dropdown" class="dropdown-content">
|
|
|
|
<li><a href="{{ url_for('user.dashboard') }}">Dashboard</a></li>
|
2017-07-06 23:35:08 +02:00
|
|
|
{% if session['user_id'] is defined and session['user_id'] in devs %}
|
|
|
|
<li class="divider"></li>
|
|
|
|
<li><a href="{{ url_for('admin.index') }}">Admin</a></li>
|
|
|
|
{% endif %}
|
2017-03-25 08:52:56 +01:00
|
|
|
<li class="divider"></li>
|
|
|
|
<li><a href="{{ url_for('user.logout') }}">Logout</a></li>
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|
|
|
|
|
2017-05-20 03:56:51 +02:00
|
|
|
<ul id="visitus_dropdown" class="dropdown-content">
|
|
|
|
<li><a href="{{url_for("embed.guild_embed", guild_id="295085744249110529")}}">Launch Embed Page</a></li>
|
|
|
|
<li class="divider"></li>
|
|
|
|
<li><a href="https://discord.io/Titan">Open in Discord</a></li>
|
|
|
|
</ul>
|
|
|
|
|
2017-03-25 08:52:56 +01:00
|
|
|
<nav>
|
|
|
|
<div class="nav-wrapper container">
|
2017-05-11 01:43:13 +02:00
|
|
|
<a href="/" class="brand-logo"><img src="{{ url_for('static', filename='img/titanembeds_shield.png') }}" /><span class="hide-on-med-and-down"><strong class="align-top">Titan</strong><span class="align-top">Embeds</span> <span class="betatag align-top">BETA</span></span></a>
|
2017-03-25 08:52:56 +01:00
|
|
|
<ul id="nav-mobile" class="right">
|
2017-05-11 04:12:26 +02:00
|
|
|
<li><a href="{{url_for("about")}}" class="waves-effect hide-on-large-only">About</a></li>
|
|
|
|
<li><a href="{{url_for("about")}}" class="waves-effect btn z-depth-3 hide-on-med-and-down">About</a></li>
|
2017-05-11 01:43:13 +02:00
|
|
|
|
2017-05-20 03:56:51 +02:00
|
|
|
<li><a data-activates="visitus_dropdown" class="waves-effect hide-on-large-only dropdown-button">Visit Us!</a></li>
|
|
|
|
<li><a data-activates="visitus_dropdown" class="waves-effect btn z-depth-3 hide-on-med-and-down dropdown-button">Visit Us!</a></li>
|
2017-03-25 08:52:56 +01:00
|
|
|
{% if session['unauthenticated'] is defined and not session['unauthenticated'] %}
|
|
|
|
<li><a id="menu_drop" data-activates="menu_dropdown" class="waves-effect btn z-depth-3 btn-floating dropdown-button avatar_menu" style='background-image: url(" {{ session['avatar'] }} ")'></a></li>
|
|
|
|
{% else %}
|
|
|
|
<li><a href="{{ url_for('user.login_authenticated') }}" class="waves-effect btn z-depth-3">Login</a></li>
|
|
|
|
{% endif %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
<div class="container">
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
<footer class="page-footer">
|
|
|
|
<div class="footer-copyright">
|
|
|
|
<div class="container">
|
|
|
|
A project by EndenDragon
|
|
|
|
<a class="grey-text text-lighten-4 right" href="https://github.com/EndenDragon/Titan">GitHub Repo</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
|
|
|
|
<!--Import jQuery before materialize.js-->
|
2017-04-08 09:43:37 +02:00
|
|
|
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
|
|
|
|
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/materialize/0.98.1/js/materialize.min.js" integrity="sha256-ToPQhpo/E89yaCd7+V8LUCjobNRkjilRXfho6x3twLU=" crossorigin="anonymous"></script>
|
2017-03-26 10:04:15 +02:00
|
|
|
{% block script %}{% endblock %}
|
2017-03-25 08:52:56 +01:00
|
|
|
</body>
|
|
|
|
</html>
|