Se desexamos darlle unhas pinceladas...Engadir un bloque > HTML > dirixímonos á columna dereita e "Configurar o bloque HTML". Inserimos o seguinte código javascript
 

<script>
    //Primeira parte: Ocultamos o título e as migas de pan. Engadimos un cor de fondo ao cabeceiro
    estilosCSS = '.page-header-headings{visibility:hidden} #page-header .card{background-color:#4A95FF33;} .breadcrumb{visibility:hidden;} #section-0.section.main.clearfix{background-color:#B0F23D33;}';
    var styleElement = document.createElement('style');
    styleElement.appendChild(document.createTextNode(estilosCSS));
    document.getElementsByTagName('head')[0].appendChild(styleElement);
    //Segunda parte. Seleccionamos a sección do cabeceiro e gardámolo nunha variable
    var cabeceiro =  document.querySelector('#page-header .card');
    //Gardamos na variable imaxe a url dunha imaxe e os estilos da mesma
    imaxe = document.createElement('img');
    imaxe.setAttribute('src', 'http://atio.es/pub/tux.png');
    imaxe.setAttribute('width', '10%')
    imaxe.setAttribute("style","float:left; margin-left:100px;margin-top:-90px");
    //Inserimos no cabeceiro a imaxe
    cabeceiro.appendChild(imaxe)
</script>