fix invalid html, remove unneeded semicolons from js

This commit is contained in:
Thomas Waldmann 2013-11-03 05:57:13 +01:00
parent 0915cc2f68
commit 95212f4baf
2 changed files with 14 additions and 14 deletions

View File

@ -22,14 +22,14 @@
<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>:
<ul>
<li>nagging its users to make a paid subscription</li>
<li>annoying its users with advertisements or spam</li>
<li>cancelling hosts or accounts after a short period of non-usage</li>
<li>hiding the few free features almost undiscoverably
between a ton of commercial-only features</li>
</ul>
</p> </p>
<ul>
<li>nagging its users to make a paid subscription</li>
<li>annoying its users with advertisements or spam</li>
<li>cancelling hosts or accounts after a short period of non-usage</li>
<li>hiding the few free features almost undiscoverably
between a ton of commercial-only features</li>
</ul>
</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:
<ul>
<li>file issues on the issue tracker for bugs, ideas, patches.</li>
<li>create pull requests for your contributions.</li>
</ul>
</p> </p>
<ul>
<li>file issues on the issue tracker for bugs, ideas, patches.</li>
<li>create pull requests for your contributions.</li>
</ul>
</div> </div>
</div> </div>
{% endblock %} {% endblock %}

View File

@ -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 %}