mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
6566903df5
no issue This commit removes the `memberAttribution` feature flag from the codebase. Some CSS classes are not removed as removing them and updating the associated CSS files have side effects sadly.
62 lines
2.7 KiB
Handlebars
62 lines
2.7 KiB
Handlebars
<section class="gh-canvas gh-canvas-sticky">
|
|
<GhCanvasHeader class="gh-canvas-header sticky break tablet post-header">
|
|
<GhCustomViewTitle @title="Pages" @query={{reset-query-params "posts"}} />
|
|
|
|
<section class="view-actions">
|
|
<PostsList::ContentFilter
|
|
@currentUser={{this.session.user}}
|
|
@selectedType={{this.selectedType}}
|
|
@availableTypes={{this.availableTypes}}
|
|
@onTypeChange={{this.changeType}}
|
|
@selectedVisibility={{this.selectedVisibility}}
|
|
@availableVisibilities={{this.availableVisibilities}}
|
|
@onVisibilityChange={{this.changeVisibility}}
|
|
@selectedAuthor={{this.selectedAuthor}}
|
|
@availableAuthors={{this.availableAuthors}}
|
|
@onAuthorChange={{this.changeAuthor}}
|
|
@selectedTag={{this.selectedTag}}
|
|
@availableTags={{this.availableTags}}
|
|
@onTagChange={{this.changeTag}}
|
|
@selectedOrder={{this.selectedOrder}}
|
|
@availableOrders={{this.availableOrders}}
|
|
@onOrderChange={{this.changeOrder}}
|
|
/>
|
|
|
|
<LinkTo @route="editor.new" @model="page" class="gh-btn gh-btn-primary view-actions-top-row" data-test-new-page-button={{true}}><span>New page</span></LinkTo>
|
|
</section>
|
|
</GhCanvasHeader>
|
|
|
|
<section class="view-container content-list">
|
|
<div class="gh-list-sticky">
|
|
<PostsList::List
|
|
@model={{this.postsInfinityModel}}
|
|
@list={{this.selectionList}}
|
|
>
|
|
<li class="no-posts-box">
|
|
<div class="no-posts">
|
|
{{#if this.showingAll}}
|
|
{{svg-jar "pages-placeholder" class="gh-pages-placeholder"}}
|
|
<h4>Tell the world about yourself.</h4>
|
|
<LinkTo @route="editor.new" @model="page" class="gh-btn gh-btn-green">
|
|
<span>Create a new page</span>
|
|
</LinkTo>
|
|
{{else}}
|
|
<h4>No pages match the current filter</h4>
|
|
<LinkTo @route="pages" @query={{hash type=null author=null tag=null}} class="gh-btn">
|
|
<span>Show all pages</span>
|
|
</LinkTo>
|
|
{{/if}}
|
|
</div>
|
|
</li>
|
|
</PostsList::List>
|
|
</div>
|
|
|
|
<GhInfinityLoader
|
|
@infinityModel={{this.postsInfinityModel}}
|
|
@scrollable=".gh-main"
|
|
@triggerOffset={{1000}} />
|
|
</section>
|
|
|
|
{{outlet}}
|
|
</section>
|