@extends('base')
@section('title')
Actualités {{{ ($is_global_news_page) ? "de l'unité" : $user->currentSection->de_la_section }}}
@stop
@section('back_links')
@if ($showing_archives)
$user->currentSection->slug)) }}'>
Retour aux actualités de cette année
@endif
@stop
@section('forward_links')
@if ($can_edit)
Modifier les actualités
@endif
@stop
@section('body_top')
@if (Parameter::get(Parameter::$FACEBOOK_APP_ID))
@endif
@stop
@section('additional_javascript')
@stop
@section('content')
Actualités {{{ ($is_global_news_page) ? "de l'unité" : $user->currentSection->de_la_section }}}
@if (count($news) == 0)
Aucune nouvelle.
@endif
@foreach ($news as $newsItem)
{{ $newsItem->body }}
@if (count($newsItem->getComments()) || $user->isMember())
@endif
@endforeach
@if ($has_archives)
@if ($showing_archives)
@else
@endif
@endif
@stop