forked from Screenly/Anthias
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.html
47 lines (38 loc) · 1.18 KB
/
base.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
{% include "head.html" %}
{% block head %}
{% endblock %}
</head>
<body>
{% include 'header.html' %}
{% block content %}
{% endblock %}
<div class="container mt-4">
<div class="row">
<div class="col-6 small text-white">
<span>Want to get more out of your digital signage?
<a class="brand"
href="https://www.screenly.io/?utm_source=Anthias&utm_medium=root-page&utm_campaign=UI"
target="_blank">
<strong>Try Screenly</strong>.
</a></span>
</div>
<div class="col-6 text-right small">
<span>
<a href="javascript://" id="subsribe-form-container" data-html="true" data-trigger="focus"
data-placement="top">
<strong>Get the latest Screenly news directly in your mailbox.</strong>
</a>
</span>
</div>
</div>
</div>
{% include 'footer.html' %}
<script type="text/javascript">
$(".navbar .nav li a").removeClass('active');
$(".navbar .nav li a[href='" + window.location.pathname + "']").addClass('active');
</script>
</body>
</html>