parent
c3e9307923
commit
1fc2b85976
@ -0,0 +1,58 @@ |
||||
{# Original file: |
||||
vendor/sonata-project/news-bundle/Resources/views/Post/archive.html.twig |
||||
#} |
||||
{% block sonata_page_breadcrumb %} |
||||
<div class="row-fluid clearfix"> |
||||
{{ sonata_block_render_event('breadcrumb', { 'context': 'news_archive', 'collection': collection, 'tag': tag, 'current_uri': app.request.requestUri }) }} |
||||
</div> |
||||
{% endblock %} |
||||
|
||||
<h1>{{ 'title_archive'|trans({}, 'SonataNewsBundle') }}</h1> |
||||
|
||||
<div class="sonata-blog-post-list"> |
||||
{% for post in pager.getResults() %} |
||||
<div class="sonata-blog-post-container"> |
||||
<header> |
||||
<h2 class="sonata-blog-post-title"> |
||||
<a href="{{ url('sonata_news_view', { 'permalink': sonata_news_permalink(post) }) }}">{{ post.title }}</a> |
||||
</h2> |
||||
|
||||
<div class="sonata-blog-post-information"> |
||||
<span class="sonata-blog-post-author">{{ 'archive_author'|trans({'%author%': post.author }, 'SonataNewsBundle') }}</span> | |
||||
|
||||
<i class="icon-calendar"></i> |
||||
{{ post.publicationDateStart | format_date }} | |
||||
|
||||
<i class="icon-comment"></i> |
||||
<span class="sonata-blog-post-comments-count">{{ 'comments_count'|trans({'%comments_count%': post.commentsCount }, 'SonataNewsBundle') }}</span> |
||||
|
||||
<div class="sonata-blog-post-tags"> |
||||
{% if post.tags|length > 1 %} |
||||
<i class="icon-tags"></i> |
||||
{% else %} |
||||
<i class="icon-tag"></i> |
||||
{% endif %} |
||||
{{ 'published_under'|transchoice(post.tags|length, {}, 'SonataNewsBundle') }} |
||||
|
||||
{% for tag in post.tags %} |
||||
<a href="{{ url('sonata_news_tag', { 'tag': tag.slug } ) }}">{{ tag.name }}</a>{% if not loop.last %},{% endif %} |
||||
{% endfor %} |
||||
</div> |
||||
</div> |
||||
</header> |
||||
|
||||
<div class="sonata-blog-post-abtract"> |
||||
{{ post.abstract }} |
||||
</div> |
||||
</div> |
||||
|
||||
<hr /> |
||||
{% else %} |
||||
{{ 'no_post_found'|trans({}, 'SonataNewsBundle') }} |
||||
{% endfor %} |
||||
|
||||
<ul class="pager"> |
||||
<li{% if pager.page == pager.lastPage %} class="disabled"{% endif %}><a href="{{ url(route, route_parameters|merge({'page': pager.nextpage})) }}" title="{{ 'link_previous_page'|trans({}, 'SonataNewsBundle') }}">{{ 'link_previous_page'|trans({}, 'SonataNewsBundle') }}</a> |
||||
<li{% if pager.page == pager.firstPage %} class="disabled"{% endif %}><a href="{{ url(route, route_parameters|merge({'page': pager.previouspage})) }}" title="{{ 'link_next_page'|trans({}, 'SonataNewsBundle') }}">{{ 'link_next_page'|trans({}, 'SonataNewsBundle') }}</a></li> |
||||
</ul> |
||||
</div> |
@ -0,0 +1,26 @@ |
||||
{# |
||||
|
||||
/* |
||||
* This file is part of the Sonata package. |
||||
* |
||||
* (c) Thomas Rabaix <thomas.rabaix@sonata-project.org> |
||||
* |
||||
* For the full copyright and license information, please view the LICENSE |
||||
* file that was distributed with this source code. |
||||
*/ |
||||
|
||||
#} |
||||
|
||||
<div class="panel panel-default"> |
||||
<div class="panel-heading"> |
||||
<h3>{{'title_leave_comment'|trans({}, 'SonataNewsBundle') }}</h3> |
||||
</div> |
||||
<div class="panel-body"> |
||||
<form action="{{ url('sonata_news_add_comment', {'id': post_id}) }}" method="POST" class="form-horizontal" role="form"> |
||||
{{ form_widget(form) }} |
||||
<div class="form-actions"> |
||||
<button type="submit" class="btn btn-primary"><i class="glyphicon glyphicon-pencil"></i> {{'btn_add_comment'|trans({}, 'SonataNewsBundle') }}</button> |
||||
</div> |
||||
</form> |
||||
</div> |
||||
</div> |
@ -0,0 +1,34 @@ |
||||
{# |
||||
|
||||
/* |
||||
* This file is part of the Sonata package. |
||||
* |
||||
* (c) Thomas Rabaix <thomas.rabaix@sonata-project.org> |
||||
* |
||||
* For the full copyright and license information, please view the LICENSE |
||||
* file that was distributed with this source code. |
||||
*/ |
||||
|
||||
#} |
||||
|
||||
<div class="sonata-blog-comment-container"> |
||||
<h3>{{ 'title_comments'|trans({}, 'SonataNewsBundle') }}</h3> |
||||
|
||||
<ul class="sonata-blog-comment-list"> |
||||
{% for comment in pager.results %} |
||||
<li class="sonata-blog-comment"> |
||||
<div class="sonata-blog-comment-name"> |
||||
<a href="{{ comment.url }}" target="new" rel="nofollow">{{ comment.name }}</a> |
||||
</div> |
||||
<div class="sonata-blog-comment-date"> |
||||
{{ comment.createdAt | format_date }} |
||||
</div> |
||||
<div class="sonata-blog-comment-message"> |
||||
{{ comment.message }} |
||||
</div> |
||||
</li> |
||||
{% else %} |
||||
<li>{{ 'no_comments_available'|trans({}, 'SonataNewsBundle') }}</li> |
||||
{% endfor %} |
||||
</ul> |
||||
</div> |
@ -0,0 +1,57 @@ |
||||
{% block sonata_page_breadcrumb %} |
||||
<div class="row-fluid clearfix"> |
||||
{{ sonata_block_render_event('breadcrumb', { 'context': 'news_post', 'post': post, 'current_uri': app.request.requestUri }) }} |
||||
</div> |
||||
{% endblock %} |
||||
|
||||
<article class="sonata-blog-post-container"> |
||||
<header> |
||||
<div class="sonata-blog-post-date-container"> |
||||
<h5> |
||||
<i class="icon-calendar"></i> |
||||
{{ post.publicationDateStart | format_date }} |
||||
</h5> |
||||
</div> |
||||
|
||||
<h1 class="sonata-blog-post-title"> |
||||
<a href="{{ url('sonata_news_view', { 'permalink': sonata_news_permalink(post) }) }}">{{ post.title }}</a> |
||||
<span class="sonata-blog-post-author">{{ 'archive_author'|trans({'%author%': post.author }, 'SonataNewsBundle') }}</span> |
||||
</h1> |
||||
|
||||
<div class="sonata-blog-post-information"> |
||||
<div class="sonata-blog-post-tag-container"> |
||||
<div class="sonata-blog-post-tag-title"> |
||||
{% if post.tags|length > 1 %} |
||||
<i class="icon-tags"></i> |
||||
{% else %} |
||||
<i class="icon-tag"></i> |
||||
{% endif %} |
||||
{{ 'published_under'|transchoice(post.tags|length, {}, 'SonataNewsBundle') }} |
||||
</div> |
||||
<div class="sonata-blog-post-tag-list"> |
||||
{% for tag in post.tags %} |
||||
<a href="{{ url('sonata_news_tag', { 'tag': tag.slug } ) }}">{{ tag.name }}</a> |
||||
{% endfor %} |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</header> |
||||
|
||||
<div class="sonata-blog-post-content"> |
||||
{% media post.image, 'wide' %} |
||||
{{ post.content|raw }} |
||||
</div> |
||||
|
||||
{% render(controller('SonataNewsBundle:Post:comments', {'postId': post.id})) %} |
||||
|
||||
{% if post.iscommentable %} |
||||
{% render(controller('SonataNewsBundle:Post:addCommentForm', { |
||||
'postId': post.id, |
||||
'form': form |
||||
})) %} |
||||
{% else %} |
||||
<div> |
||||
{{ 'message_comments_are_closed'|trans({}, 'SonataNewsBundle') }} |
||||
</div> |
||||
{% endif %} |
||||
</article> |
Loading…
Reference in new issue