proxadmin/app/templates/main/livechat.html

30 lines
780 B
HTML
Raw Permalink Normal View History

2017-03-08 13:53:09 -05:00
{% extends "base.html" %}
2017-10-07 11:39:50 -04:00
{% block styles %}
{{ super() }}
<style>
body {
background-image: url('/static/images/cloudsbg.jpeg');
}
</style>
{% endblock %}
2017-03-08 13:53:09 -05:00
{% block page_content %}
2017-10-07 11:39:50 -04:00
<div class="row">
<div class="col-md-12">
<div class="panel panel-primary panel-transparent">
<div class="panel-body">
2018-03-24 19:41:48 -04:00
<iframe src="https://datapoint.bg/kiwi/" style="border:0; width:100%; height:600px;"></iframe>
2017-10-29 17:06:54 -04: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 11:39:50 -04:00
</div>
</div>
</div>
</div>
2017-03-08 13:53:09 -05:00
{% endblock %}
2017-05-07 21:33:42 -04:00
2017-03-08 13:53:09 -05:00
{% block footer %}
{% endblock %}