38 lines
2.1 KiB
HTML
38 lines
2.1 KiB
HTML
|
{% load pipeline %}
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans">
|
||
|
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
||
|
{% stylesheet 'style' %}
|
||
|
<meta charset="utf-8">
|
||
|
{% block meta %}
|
||
|
<meta name="description" content="Episodes.Community - Share, Discuss and Watch your Favourite Shows">
|
||
|
<meta name="keywords" content="episodes,community,television,shows,discussion">
|
||
|
<meta name="author" content="Icy Network">
|
||
|
{% endblock %}
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>{% block title %}Episodes.Community{% endblock %}</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
{% block unibar %}
|
||
|
<div class="unibar">
|
||
|
<span class="logo">Episodes<span class="period">.</span>Community</span>
|
||
|
<div class="userdata">
|
||
|
{% if request.session.user_id %}
|
||
|
logged in
|
||
|
{% else %}
|
||
|
<a href="/login">Log in</a>
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|
||
|
<div class="wrapper">
|
||
|
{% block content %}{% endblock %}
|
||
|
</div>
|
||
|
{% block footer %}
|
||
|
<footer class="icy"><img class="squeebot" src="https://icynet.eu/static/image/squeebot.svg"><span class="copyright"><a href="https://icynet.eu" target="_blank"><div class="logo small"><div class="part1">Icy</div><div class="part2">Network</div></div></a><div class="social"><a class="socialbtn" id="github" href="https://github.com/IcyNet/" target="_blank"><i class="fa fa-fw fa-github"></i></a><a class="socialbtn" id="twitter" href="https://twitter.com/IcyNet" target="_blank"><i class="fa fa-fw fa-twitter"></i></a><a class="socialbtn" id="discord" href="https://discord.gg/Xe7MKSx" target="_blank"><span class="discordlogo"></span></a></div><span>© 2017 - Icy Network - Some Rights Reserved</span><br><span> <a href="https://icynet.eu/docs/terms-of-service">Terms of Service</a><span class="divider">|</span><a href="https://icynet.eu/docs/privacy-policy">Privacy Policy</a><span class="divider">|</span><a href="https://icynet.eu/donate">Donate</a></span></span></footer>
|
||
|
{% endblock %}
|
||
|
</body>
|
||
|
</html>
|