notice_tmpl.coffee 529 B

123456789
  1. notice = (text) -> """<p class="_notice-text">#{text}</p>"""
  2. app.templates.singleDocNotice = (doc) ->
  3. notice """ You're browsing the #{doc.fullName} documentation. To browse all docs, go to
  4. <a href="http://#{app.config.production_host}" target="_top">#{app.config.production_host}</a> (or press <code>esc</code>). """
  5. app.templates.disabledDocNotice = ->
  6. notice """ <strong>This documentation is disabled.</strong>
  7. To enable it, go to <a href="/settings" class="_notice-link">Preferences</a>. """