multistream/frontend/templates/base.html
File Type: text/html
{% load static %}<!DOCTYPE html>
<html lang="en-US">
<head>
{% block head %}
<title>{% if community %}{{ community.name }} | {% endif %}Multistre.am</title>
{% endblock head %}
<link rel="stylesheet/less" type="text/css" href='{% static "multistream.less" %}' />
{% block styles %}
{% endblock styles %}
<script src='{% static "plugins.js" %}'></script>
{% if player_type == "twitch" %}
<script src="https://player.twitch.tv/js/embed/v1.js"></script>
{% endif %}
<script type="text/javascript" src='{% static "script.js" %}'></script>
<script type="text/javascript">
var base_url = "{{ base_url }}" || "/";
var player_objs = {};
var player_type = "{{ player_type }}";
var layout_groups = { {% for g in layout_groups %}{{ forloop.counter }}: { {% for l in g %}{{ l.index }}: {'haschat': {% if l.has_chat %}true{% else %}false{% endif %},},{% endfor %} },{% endfor %} };
</script>
{% block script %}
{% endblock script %}
<link href='{% static "images/favicon.jpg" %}' rel="shortcut icon"/>
{%if community %}
<meta name="description" content="Watch multiple {{ community.name }} community streams at one time.">
{% else %}
<meta name="description" content="Multistream: The best way to watch multiple Twitch streams at one time.">
{% endif %}
<meta name="keywords" content="multistream,multistre.am,multitwitch,multiple,stream,twitch{% if community %},{{ community.name }}{% endif %}">
</head>
<body>
<div id="bodywrapper">
{% block body %}
{% endblock body %}
</div>
</body>
</html>