1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-08-05 05:25:27 +02:00
documize/gui/app/templates/components/layout/logo-heading.hbs
Harvey Kandola 62c3cd03ad [WIP] Improve master layout for different devices + product growth
We have two pressing needs:

1. Improve experience on real estate challenged devices.
2. Make room for product feature-set growth.

To hit these targets, we need to develop better UX through smarter on-screen space management.
2019-05-20 10:39:48 +01:00

21 lines
500 B
Handlebars

<div class="logo-heading">
{{#if icon}}
<div class="icon">
<i class="dicon {{icon}}" />
</div>
{{else if meta}}
<div class="meta-icon">
{{ui/ui-icon-meta icon=meta}}
</div>
{{else if logo}}
<div class="meta-logo">
<img src="{{appMeta.endpoint}}/public/logo?cb={{cacheBuster}}"
style="max-width: 200px; max-height: 100px;">
</div>
{{/if}}
<div class="text">
{{layout/page-heading title=title}}
{{layout/page-desc desc=desc}}
</div>
</div>
<Ui::UiSpacer @size=200 />