HEX
Server: Apache
System: Linux srv4.garantili.com.tr 4.18.0-477.21.1.lve.1.el8.x86_64 #1 SMP Tue Sep 5 23:08:35 UTC 2023 x86_64
User: ekspardev (1006)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/ekspardev/public_html/tubisad/rapor/src/pages/changelog.html
---
title: Changelog
menu: changelog
layout: markdown
---

<h1>Changelog</h1>

{% for version in site.data.changelog reversed %}
<div class="mb-4">
	<h2 class="mb-2">
		<span>{{ version.version }}</span> –
		<small>{{ version.date | date: '%B %d, %Y' }}</small>
	</h2>

	{% if version.description %}
	<p class="strong">{{ version.description }}</p>
	{% endif %}

	{% if version.changes %}
	<ul>
		{% for change in version.changes %}
		<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>
		{% endfor %}
	</ul>
	{% endif %}
</div>
{% endfor %}