fix invalid html, remove unneeded semicolons from js
This commit is contained in:
parent
0915cc2f68
commit
95212f4baf
@ -22,6 +22,7 @@
|
|||||||
<h2>Why another one?</h2>
|
<h2>Why another one?</h2>
|
||||||
<p>
|
<p>
|
||||||
As far as we know, there was no service yet that is <em>not</em>:
|
As far as we know, there was no service yet that is <em>not</em>:
|
||||||
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>nagging its users to make a paid subscription</li>
|
<li>nagging its users to make a paid subscription</li>
|
||||||
<li>annoying its users with advertisements or spam</li>
|
<li>annoying its users with advertisements or spam</li>
|
||||||
@ -29,7 +30,6 @@
|
|||||||
<li>hiding the few free features almost undiscoverably
|
<li>hiding the few free features almost undiscoverably
|
||||||
between a ton of commercial-only features</li>
|
between a ton of commercial-only features</li>
|
||||||
</ul>
|
</ul>
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-4">
|
<div class="col-lg-4">
|
||||||
<h2>How is it?</h2>
|
<h2>How is it?</h2>
|
||||||
@ -86,11 +86,11 @@
|
|||||||
<p>
|
<p>
|
||||||
Visit the
|
Visit the
|
||||||
<a href="https://github.com/nsupdate-info/nsupdate.info">nsupdate.info project on GitHub</a> to:
|
<a href="https://github.com/nsupdate-info/nsupdate.info">nsupdate.info project on GitHub</a> to:
|
||||||
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>file issues on the issue tracker for bugs, ideas, patches.</li>
|
<li>file issues on the issue tracker for bugs, ideas, patches.</li>
|
||||||
<li>create pull requests for your contributions.</li>
|
<li>create pull requests for your contributions.</li>
|
||||||
</ul>
|
</ul>
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -120,7 +120,7 @@
|
|||||||
function insert_img_ipv4() {
|
function insert_img_ipv4() {
|
||||||
$('#ip_detection').add(
|
$('#ip_detection').add(
|
||||||
'<img src="//{{ WWW_IPV4_HOST }}/detectip/{{ request.session.session_key }}/" >');
|
'<img src="//{{ WWW_IPV4_HOST }}/detectip/{{ request.session.session_key }}/" >');
|
||||||
};
|
}
|
||||||
$(setTimeout("insert_img_ipv4()", 1000));
|
$(setTimeout("insert_img_ipv4()", 1000));
|
||||||
</script>
|
</script>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
@ -129,7 +129,7 @@
|
|||||||
function insert_img_ipv6() {
|
function insert_img_ipv6() {
|
||||||
$('#ip_detection').add(
|
$('#ip_detection').add(
|
||||||
'<img src="//{{ WWW_IPV6_HOST }}/detectip/{{ request.session.session_key }}/" >');
|
'<img src="//{{ WWW_IPV6_HOST }}/detectip/{{ request.session.session_key }}/" >');
|
||||||
};
|
}
|
||||||
$(setTimeout("insert_img_ipv6()", 1000));
|
$(setTimeout("insert_img_ipv6()", 1000));
|
||||||
</script>
|
</script>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
@ -141,7 +141,7 @@
|
|||||||
$('#ipv4').text(data['ipv4']);
|
$('#ipv4').text(data['ipv4']);
|
||||||
$('#ipv6').text(data['ipv6']);
|
$('#ipv6').text(data['ipv6']);
|
||||||
});
|
});
|
||||||
};
|
}
|
||||||
$(setTimeout("insert_ips()", 2000));
|
$(setTimeout("insert_ips()", 2000));
|
||||||
</script>
|
</script>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user