1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/web_client/application/views/welcome_content.php

15 lines
722 B
PHP
Raw Normal View History

<?php defined('SYSPATH') OR die('No direct access allowed.'); ?>
<div class="box">
<p><?php echo __('This is the default Kohana index page. You may also access this page as')?> <code><?php echo html::anchor('welcome/index', 'welcome/index') ?></code>.</p>
<p>
<?php echo __('To change what gets displayed for this page, edit')?> <code>application/controllers/welcome.php</code>.<br />
<?php echo __('To change this text, edit')?> <code>application/views/welcome_content.php</code>.
</p>
</div>
<ul>
<?php foreach ($links as $title => $url): ?>
<li><?php echo ($title === 'License') ? html::file_anchor($url, html::chars(__($title))) : html::anchor($url, html::chars(__($title))) ?></li>
<?php endforeach ?>
</ul>