1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-30 15:04:38 +04:00
Files
tabler/pages/_includes/cards/most-visited-pages.html
T
2020-02-08 20:23:23 +01:00

36 lines
883 B
HTML

<div class="card">
<div class="card-header">
<h4 class="card-title">Most Visited Pages</h4>
</div>
<div class="table-responsive">
<table class="table card-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 %}
{% assign data = page.data | join: ',' %}
<tr>
<td>
{{ page.uri }}
<a href="#" class="link-secondary ml-2">{% 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-rate }}</td>
<td class="text-right">
{% include ui/sparkline.html type="line" data=data %}
</td>
</tr>
{% endfor %}
</table>
</div>
</div>