Example #1
0
 public function index()
 {
     $page = Page::get('news');
     $news = Model\News::getAll();
     return new View('view/news.html.php', array('name' => $page->name, 'title' => $page->description, 'content' => $page->content, 'news' => $news));
 }
Example #2
0
 *  Goteo is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU Affero General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  Goteo 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 Affero General Public License for more details.
 *
 *  You should have received a copy of the GNU Affero General Public License
 *  along with Goteo.  If not, see <http://www.gnu.org/licenses/agpl.txt>.
 *
 */
use Goteo\Library\Text, Goteo\Model\News;
$highlights = News::getAll(true);
$see_more = Text::get('regular-see_more');
?>
<div id="highlights">
    <!---
    <h2><a href="/news"><?php 
//echo Text::get('regular-news');
?>
</a></h2>

    <ul>
        <?php 
/*foreach ($highlights as $i => $hl) : ?>
  <li><?php echo htmlspecialchars($hl->title) ?> <?php if (!empty ($hl->url)) : ?><a href="<?php echo $hl->url; ?>" target="_blank"><?php echo $see_more; ?></a><?php endif; ?></li>
  <?php endforeach */
?>