30 lines
780 B
HTML
30 lines
780 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block styles %}
|
|
{{ super() }}
|
|
<style>
|
|
body {
|
|
background-image: url('/static/images/cloudsbg.jpeg');
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
|
|
{% block page_content %}
|
|
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="panel panel-primary panel-transparent">
|
|
<div class="panel-body">
|
|
<iframe src="https://datapoint.bg/kiwi/" style="border:0; width:100%; height:460px;"></iframe>
|
|
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>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|
|
{% block footer %}
|
|
{% endblock %}
|