mirror of
https://github.com/ChronosX88/Influence-cjdns.git
synced 2024-11-09 01:11:00 +00:00
22 lines
522 B
Smarty
22 lines
522 B
Smarty
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body>
|
|
<p>Ваш IP: <?=$_SERVER['HTTP_HOST']?></p>
|
|
|
|
<nav>
|
|
<a href="/contacts/">Контакты</a>
|
|
</nav>
|
|
<?
|
|
api_get('/contacts/', 'contacts.tpl');
|
|
api_get('/contacts/(?<addr>[^/]+)', 'contact.tpl');
|
|
api_get('/contacts/(?<addr>[^/]+)/messages', 'chat.tpl');
|
|
?>
|
|
|
|
<iframe id="ping" style="display: none"></iframe>
|
|
<script>setInterval(function(){ document.querySelector('#ping').src = '/contacts/ping'; }, 5000)</script>
|
|
</body>
|
|
</html>
|