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/_includes/cards/tables/progressbg.html
<div class="card">
	<div class="card-body">
		<h3 class="card-title">Top Pages</h3>

		<table class="table table-sm table-borderless">
			<thead>
			<tr>
				<th>Page</th>
				<th class="text-end">Visitors</th>
			</tr>
			</thead>
			<tbody>
			{% for page in site.data.pages %}
			<tr>
				<td>
					<div class="progressbg">
						{% include ui/progress.html value=page.bounce class="progressbg-progress" color="primary-lt" %}
						<div class="progressbg-text">{{ page.uri }}</div>
					</div>
				</td>
				<td class="w-1 fw-bold text-end">{{ page.visitors }}</td>
			</tr>
			{% endfor %}
			</tbody>
		</table>
	</div>
</div>