You can do it by using JavaScript to replace the footer contents. You can see a sample here.
/* Custom Footer*/
var customFooterHTML = 'Put your custom html in here';
var x = document.querySelector('footer').getElementsByTagName('nav')[0];
x.innerHTML = customFooterHTML;