<?php $__env->startSection('css'); ?>
<link rel='stylesheet' href='/css/about.css' />
<link rel='stylesheet' href='/css/effects.css' />
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
<div class='well logo-well'>
    <img class='logo-img' src='/img/logo.png' />
</div>

<div class='about-contents'>
    <?php if($role == "admin"): ?>
    <dl>
        <p>Build Information</p>
        <dt>Version: <?php echo e(env('POLR_VERSION')); ?></dt>
        <dt>Release date: <?php echo e(env('POLR_RELDATE')); ?></dt>
        <dt>App Install: <?php echo e(env('APP_NAME')); ?> on <?php echo e(env('APP_ADDRESS')); ?> on <?php echo e(env('POLR_GENERATED_AT')); ?><dt>
    </dl>
    <p>You are seeing the information above because you are logged in as an administrator.</p>
    <?php endif; ?>

    <p><?php echo e(env('APP_NAME')); ?> is powered by Polr 2, an open source, minimalist link shortening platform.
        Learn more at <a href='https://github.com/Cydrobolt/polr'>its Github page</a> or its <a href="//project.polr.me">project site</a>.
        <br />Polr is licensed under the GNU GPL License.
    </p>
</div>
<a href='#' class='btn btn-success license-btn'>More Information</a>
<pre class="license" id="gpl-license">
Copyright (C) 2013-2017 Chaoyi Zha

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
</pre>

<?php $__env->stopSection(); ?>

<?php $__env->startSection('js'); ?>
<script src='/js/about.js'></script>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('layouts.base', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>