We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have enabled the public API and can see my tags. I cannot see Featured posts even though I have marked some posts as Featured.
I believe this is because sidebar.hbs contains the following code <ul id="featured-posts" class="no-bullet"></ul>
<ul id="featured-posts" class="no-bullet"></ul>
According to https://themes.ghost.org/docs/recent-featured-sidebar, the code inside <ul></ul> should be as follows:
<ul></ul>
`{{#get "posts" filter="featured:true" limit="3" as |featured|}}
No featured posts...
The text was updated successfully, but these errors were encountered:
Thank you for your input, the update is now in the master branch.
Sorry, something went wrong.
No branches or pull requests
I have enabled the public API and can see my tags. I cannot see Featured posts even though I have marked some posts as Featured.
I believe this is because sidebar.hbs contains the following code
<ul id="featured-posts" class="no-bullet"></ul>
According to https://themes.ghost.org/docs/recent-featured-sidebar, the code inside
<ul></ul>
should be as follows:`{{#get "posts" filter="featured:true" limit="3" as |featured|}}
Featured posts
{{#foreach featured}}- {{title}}
{{/foreach}}
No featured posts...
{{/get}}`The text was updated successfully, but these errors were encountered: