2015-07-20 00:09:47 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html ng-app="Application" ng-controller="Controller">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height" />
|
2017-03-21 10:35:28 +01:00
|
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'unsafe-inline' 'unsafe-eval' 'self' <%= apiOriginHostname %>; img-src 'self' <%= apiOriginHostname %>;" />
|
2015-07-20 00:09:47 -07:00
|
|
|
|
|
|
|
|
<title> Cloudron </title>
|
|
|
|
|
|
2016-06-01 17:27:39 -07:00
|
|
|
<link id="favicon" href="/api/v1/cloudron/avatar" rel="icon" type="image/png">
|
|
|
|
|
|
2015-08-25 21:59:01 -07:00
|
|
|
<!-- Theme CSS -->
|
|
|
|
|
<link href="theme.css" rel="stylesheet" type="text/css">
|
|
|
|
|
|
2017-01-06 17:57:22 +01:00
|
|
|
<!-- external fonts and CSS -->
|
2017-02-10 10:53:30 +01:00
|
|
|
<link href="3rdparty/css/font-awesome.min.css" rel="stylesheet" rel="stylesheet" type="text/css">
|
2017-01-06 17:57:22 +01:00
|
|
|
|
2015-07-20 00:09:47 -07:00
|
|
|
<!-- jQuery-->
|
|
|
|
|
<script src="3rdparty/js/jquery.min.js"></script>
|
|
|
|
|
|
2017-01-06 17:57:22 +01:00
|
|
|
<!-- Bootstrap Core JavaScript -->
|
|
|
|
|
<script src="3rdparty/js/bootstrap.min.js"></script>
|
|
|
|
|
|
2015-07-20 00:09:47 -07:00
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body class="status-page">
|
|
|
|
|
|
|
|
|
|
<div class="wrapper">
|
|
|
|
|
<div class="content">
|
2016-03-21 14:35:30 -07:00
|
|
|
<h1>
|
2017-05-08 13:32:45 +02:00
|
|
|
<img id="avatar" width="48" height="48" src="/api/v1/cloudron/avatar" onerror="this.src = '/img/logo.png'"/>
|
2016-03-21 14:35:30 -07:00
|
|
|
<span style="padding-left:10px">Cloudron</span>
|
|
|
|
|
</h1>
|
|
|
|
|
<br/>
|
|
|
|
|
<h4>There is no app configured for this domain.</h4>
|
2017-01-10 22:22:27 +01:00
|
|
|
<h4>Use the <a href="/">settings panel</a> and install an app leaving the location empty.</h4>
|
2015-07-20 00:09:47 -07:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2017-01-26 13:20:00 -08:00
|
|
|
<footer class="text-center">
|
|
|
|
|
<span class="text-muted">©2017 <a href="https://cloudron.io" target="_blank">Cloudron</a></span>
|
|
|
|
|
<span class="text-muted"><a href="https://twitter.com/cloudron_io" target="_blank">Twitter <i class="fa fa-twitter"></i></a></span>
|
|
|
|
|
<span class="text-muted"><a href="https://chat.cloudron.io" target="_blank">Chat <i class="fa fa-comments"></i></a></span>
|
|
|
|
|
</footer>
|
|
|
|
|
|
2017-01-28 19:10:51 -08:00
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
$(function() {
|
|
|
|
|
var avatarUrl = '/api/v1/cloudron/avatar?' + Math.random();
|
|
|
|
|
|
|
|
|
|
$('#favicon').attr('href', avatarUrl);
|
|
|
|
|
$('#avatar').attr('src', avatarUrl);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
2015-07-20 00:09:47 -07:00
|
|
|
</body>
|
|
|
|
|
</html>
|