mirror of
https://github.com/Screenly/Anthias.git
synced 2026-01-22 04:58:34 -05:00
48 lines
1.2 KiB
HTML
48 lines
1.2 KiB
HTML
<!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>
|