Template Logo
-
The Logo component can be found in the
templates/components/widgets/logo.hbs
with your own logo SVG image OR logo image URL. -
Then user has to call logo component wherever logo has to show eg.
{
{> partials/components/widget/logo }
}
You can add a image URL icon to your Website using the following code:
<a href="{{path}}index.html" class="navbar-brand m-0">
<span class="logo-normal">
<img src="{{path}}assets/images/logo/logo.png" alt="logo" class="img-fluid" loading="lazy">
</span>
</a>