Vulcan/packages/telescope-update-prompt/lib/client/templates/update_banner.html
Jeremy Shimko 8e3c5218da allow hero modules to be full width of viewport
and constrain current internal hero modules back into the .content-wrapper max-width
2015-07-09 10:26:33 -04:00

16 lines
638 B
HTML

<template name="update_banner">
{{#if showBanner}}
<div class="content-wrapper">
<div class="update-banner grid-module grid banner">
<h3 class="update-version">{{version}}</h3>
<div class="update-content">
<h4 class="update-prompt">A new version of Telescope is available.</h4>
<p class="update-message">
You have: {{currentVersion}}. Note: this message is only displayed to admins.
<a href="https://github.com/TelescopeJS/Telescope/blob/master/History.md" target="_blank">Learn more</a>
</p>
</div>
</div>
</div>
{{/if}}
</template>