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/www/tubisad/rapor/src/pages/_includes/cards/most-visited-pages.html
<div class="card">
	<div class="card-header">
		<h3 class="card-title">Most Visited Pages</h3>
	</div>
	<div class="card-table table-responsive">
		<table class="table table-vcenter">

			<thead>
			<tr>
				<th>Page name</th>
				<th>Visitors</th>
				<th>Unique</th>
				<th colspan="2">Bounce rate</th>
			</tr>
			</thead>

			{% for page in site.data.pages limit: 6 %}
			{% assign data = page.data | join: ',' %}
			{% assign id = "bounce-rate-" | append: forloop.index %}
			<tr>
				<td>
					{{ page.uri }}
					<a href="#" class="ms-1" aria-label="Open website">{% include ui/icon.html icon="link" %}</a>
				</td>
				<td class="text-muted">{{ page.visitors | format_number }}</td>
				<td class="text-muted">{{ page.unique | format_number }}</td>
				<td class="text-muted">{{ page.bounce }}</td>
				<td class="text-end w-1">
					{% include ui/chart-sparkline.html type="line" data=data id=id small=true color="primary" %}
				</td>
			</tr>
			{% endfor %}

		</table>
	</div>
</div>