changelog.html 702 B

12345678910111213141516171819202122232425262728
  1. ---
  2. layout: markdown
  3. title: Changelog
  4. menu: changelog
  5. ---
  6. <h1>Changelog</h1>
  7. {% for version in changelog reversed %}
  8. <div class="mb-4">
  9. <h2 class="mb-2">
  10. <span>{{ version.version }}</span> –
  11. <small>{{ version.date | date: '%B %d, %Y' }}</small>
  12. </h2>
  13. {% if version.description %}
  14. <p class="strong">{{ version.description }}</p>
  15. {% endif %}
  16. {% if version.changes %}
  17. <ul>
  18. {% for change in version.changes %}
  19. <li>{{ change | markdownify | replace_regex: '</p>\s+$', '' | replace_regex: '^<p>', '' | replace_regex: '#([0-9]+)', '<a href="https://github.com/tabler/tabler/issues/\1" target="_blank" rel="noopener">#\1</a>' }}</li>
  20. {% endfor %}
  21. </ul>
  22. {% endif %}
  23. </div>
  24. {% endfor %}