1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 15:49:44 +02:00
documize/gui/app/templates/components/layout/bottom-bar.hbs
2018-12-08 20:54:19 +00:00

23 lines
672 B
Handlebars

<div class="row no-gutters d-flex align-items-center">
<div class="col d-flex justify-content-start">
<div class="footer">
<a href="https://documize.com?ref=af">Documize {{appMeta.version}}</a>
</div>
{{yield}}
</div>
<div class="col d-flex justify-content-end">
<div class="footer">
{{#if showWait}}
<div class="progress progress-wait animated fadeIn">
<img src="/assets/img/busy-gray.gif">
</div>
{{/if}}
{{#if showDone}}
<div class="progress progress-done animated zoomIn">&check;</div>
{{/if}}
{{#if showMessage}}
<div class="progress-notification animated zoomIn">{{message}}</div>
{{/if}}
</div>
</div>
</div>