friendica-directory/src/templates/servers.phtml

15 lines
618 B
PHTML
Raw Normal View History

2018-11-12 03:08:33 +01:00
<h1><?php echo $this->e($title) ?></h1>
<nav aria-label="<?php echo $this->__('Top servers pagination')?>">
2018-11-12 03:08:33 +01:00
<?php echo $this->fetch('sub/pager_full.phtml', $pager) ?>
</nav>
<div class="row">
<?php foreach ($servers as $server) : ?>
<div class="col-xl-6">
2018-12-19 10:09:23 +01:00
<?php echo $this->fetch('sub/server.phtml', ['server' => $server, 'stable_version' => $stable_version, 'rc_version' => $rc_version, 'dev_version' => $dev_version]) ?>
2018-11-12 03:08:33 +01:00
</div>
<?php endforeach; ?>
</div>
<nav aria-label="<?php echo $this->__('Bottom servers pagination')?>">
2018-11-12 03:08:33 +01:00
<?php echo $this->fetch('sub/pager_full.phtml', $pager) ?>
</nav>