You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
318 B

  1. main: |
  2. <div id="commento"></div>
  3. body: |
  4. <script>
  5. window.onload = function() {
  6. var d = document, s = d.createElement('script');
  7. s.src = '{{instanceUrl}}/js/commento.js';
  8. s.defer = true
  9. s.setAttribute('data-auto-init', true);
  10. (d.head || d.body).appendChild(s);
  11. };
  12. </script>