A clean, Markdown-based publishing platform made for writers. Write together, and build a community. https://writefreely.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

24 lines
650 B

  1. {{define "app-updates"}}
  2. {{template "header" .}}
  3. <style type="text/css">
  4. </style>
  5. <div class="content-container snug">
  6. {{template "admin-header" .}}
  7. {{if not .UpdateAvailable}}
  8. <p class="alert info">WriteFreely is up to date.</p>
  9. {{else}}
  10. <p class="alert info">WriteFreely {{.LatestVersion}} is available.</p>
  11. <section class="changelog">
  12. For details on features, bug fixes or notes on upgrading, <a href="{{.LatestReleaseURL}}">read the release notes</a>.
  13. </section>
  14. {{end}}
  15. <p>Last checked at: {{.LastChecked}}. <a href="/admin/updates?check=now">Check now</a>.</p>
  16. {{template "footer" .}}
  17. {{template "body-end" .}}
  18. {{end}}