Tried creating a new theme in odoo v12.
Throwing error: odoo.tools.convert.ParseError: "theme.ir.ui.view"
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<!-- Customize header -->
<template id="custom_header_new" inherit_id="website.layout" name="Custom Header New">
<!-- Add an element after the top menu -->
<xpath expr="//div[@id='wrapwrap']/header/div" position="after">
<div class="container">
<div class="alert alert-info mt16" role="alert">
<strong>Welcome</strong> in our website!
</div>
</div>
</xpath>
</template>
</odoo>