hn 657 B

12345678910111213141516171819202122
  1. <span id="hnews"></span>
  2. <script>
  3. (function(){
  4. var hn_like = document.createElement('iframe');
  5. hn_like.frameborder="no";
  6. hn_like.scrolling="no";
  7. hn_like.height="28px";
  8. hn_like.width="110px";
  9. hn_like.src = "http://hnlike.com/upvote.php?link="
  10. + encodeURIComponent(document.location)
  11. + "&title="
  12. + encodeURIComponent("{{ page.title }}");
  13. hn_like.innerHTML="iframes not supported by your browser";
  14. var where = document.getElementById("hnews");
  15. where.parentNode.insertBefore(
  16. hn_like,
  17. where
  18. );
  19. })();
  20. </script>