mirror of
https://github.com/documize/community.git
synced 2025-08-05 05:25:27 +02:00
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.
21 lines
500 B
Handlebars
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 />
|