1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-26 11:16:12 +04:00
Files
tabler/pages/_includes/cards/most-visited-pages.html
2019-03-12 22:09:23 +01:00

30 lines
809 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">
<tr>
<th colspan="2">Page name</th>
<th>Visitors</th>
<th>Unique page visits</th>
<th colspan="2">Bounce rate</th>
</tr>
{% for page in site.data.pages %}
<tr>
<td>{{ page.uri }}</td>
<td><a href="#" class="text-muted-light">{% include ui/icon.html icon="link" %}</a></td>
<td>{{ page.visitors | format_number }}</td>
<td>{{ page.unique | format_number }}</td>
<td>{{ page.bounce-rate }}</td>
<td class="text-right">
{% include ui/sparkline.html data="4,3,6,5,4,5,4,6,7,6,5,7,8,7,8,9,8,9,10" wide=true %}
</td>
</tr>
{% endfor %}
</table>
</div>
</div>