<?php defined("APP") or die() // Main Page ?>  
<section class="dark">
  <div class="container">
    <div class="row">
      <div class="col-md-12">
        <div class="promo">
          <h1>
            <?php echo $this->config["title"] ?>
            <span class="description"><?php echo $this->config["description"] ?></span>
          </h1>
        </div>
        <?php echo $this->shortener(array("multiple"=>FALSE)) ?>
        <br>
      </div>
    </div>
  </div>     
</section>
<section>
  <div class="container">
    <div class="row stats">
      <div class="col-xs-4">
        <h3><?php echo $this->count("urls") ?></h3>
        <strong><?php echo e("URLs Created") ?></strong>
      </div>
      <div class="col-xs-4">
        <h3><?php echo $this->count("clicks") ?></h3>
        <strong><?php echo e("Clicks Served") ?></strong>
      </div>
      <div class="col-xs-4">
        <h3><?php echo $this->count("users") ?></h3>
        <strong><?php echo e("Users Registered") ?></strong>
      </div>
    </div>
  </div>
</section>