Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
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.
 
 
 
 
 
 

22 lines
610 B

  1. {% set slug = uri.param('slug') %}
  2. {% set changelog = admin.getChangelog(slug) %}
  3. <section id="ajax" class="changelog">
  4. <a href="#" class="remodal-close"></a>
  5. {% if changelog %}
  6. <h1>{{title}} Changelog</h1>
  7. <div class="changelog-overflow">
  8. {% for version, log in changelog %}
  9. <h3 id="{{ version | replace({" ": '-'}) }}">v{{ version }}</h3>
  10. <h4 title="{{ log.date|date('F jS \\a\\t g:ia') }}">{{ log.date|nicetime }}</h4>
  11. {{ log.content|markdown|raw }}
  12. {% endfor %}
  13. </div>
  14. {% endif %}
  15. </section>