mirror of
https://github.com/Screenly/Anthias.git
synced 2026-05-07 14:55:18 -04:00
40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>Welcome to Screenly OSE</title>
|
|
<link href="{{ url_for('static', filename='css/screenly.css') }}" rel="stylesheet"/>
|
|
<style type="text/css">
|
|
html, body {
|
|
height: 100%;
|
|
overflow-y: hidden;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="splash container d-table">
|
|
<div class="col-12 d-table-cell align-middle">
|
|
<div class="splash-body p-5">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="logo-container page-header text-center">
|
|
<img src="/static/img/screenly_ose_logo_white_large.png" class="img-fluid"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-12 text-center">
|
|
{% if context.my_ip %}
|
|
<p>To manage the content on this screen, just point your browser to:</p>
|
|
<div class="form-actions">
|
|
<a href="http://{{ context.my_ip }}">http://{{ context.my_ip }}</a>
|
|
</div>
|
|
{% else %}
|
|
<p>Unable to retrieve IP.</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|