window.onload = function () { var url = window.location.pathname, file = url.split('/')[url.split('/').length - 1]; if (file != 'index.html') { add_shares(url); } }; function add_shares (url) { var section = document.getElementsByTagName('section')[0], div = document.createElement('div'), script = document.createElement('script'); div.id = 'social'; div.style.cssText = 'margin-top:1em;padding-top:1em;border-top:1px dashed gray;' div.innerHTML += '
'; div.innerHTML += 'Tweet'; div.innerHTML += '

Comments

'; section.appendChild(div); script.src = '../js/mastodon.js'; section.appendChild(script); }