class FooterTemplate extends HTMLElement { constructor() { super(); this.innerHTML = ` `; } } if ('customElements' in window) { customElements.define('footer-template', FooterTemplate); }