proxadmin/app/templates/main/livechat.html

30 lines
780 B
HTML
Raw Normal View History

2017-03-08 20:53:09 +02:00
{% extends "base.html" %}
2017-10-07 18:39:50 +03:00
{% block styles %}
{{ super() }}
<style>
body {
background-image: url('/static/images/cloudsbg.jpeg');
}
</style>
{% endblock %}
2017-03-08 20:53:09 +02:00
{% block page_content %}
2017-10-07 18:39:50 +03:00
<div class="row">
<div class="col-md-12">
<div class="panel panel-primary panel-transparent">
<div class="panel-body">
2018-03-25 01:41:48 +02:00
<iframe src="https://datapoint.bg/kiwi/" style="border:0; width:100%; height:600px;"></iframe>
2017-10-29 23:06:54 +02:00
To permanently stay connected to our chat network you could use a client like <a href="https://hexchat.github.io/downloads.html">HexChat</a> and use the following URL:<br /><a href="irc://irc.datapoint.bg:+6697/#support">irc://irc.datapoint.bg:+6697/#support</a>
2017-10-07 18:39:50 +03:00
</div>
</div>
</div>
</div>
2017-03-08 20:53:09 +02:00
{% endblock %}
2017-05-08 04:33:42 +03:00
2017-03-08 20:53:09 +02:00
{% block footer %}
{% endblock %}