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
Is it possible to set the set the order of widgets?
The default ordering is alphabetical, I'd like to set another order.
It is currently a simple forEach. See themes/bootstrap-blog/layout/_partial/sidebar.ejs:
themes/bootstrap-blog/layout/_partial/sidebar.ejs
<% theme.widgets.forEach(function(widget){ %> <%- partial('_widget/' + widget) %> <% }) %>
It would be great to be able to set the order in _config.yml where:
_config.yml
widgets: - about - category - archive - recent_posts - tag
would be a different order and activation setting than:
widgets: - recent_posts - about - category
The text was updated successfully, but these errors were encountered:
This issue should be converted to a documentation.
It is already working as I wished in the issue... 👍
Sorry, something went wrong.
No branches or pull requests
Is it possible to set the set the order of widgets?
The default ordering is alphabetical, I'd like to set another order.
It is currently a simple forEach. See
themes/bootstrap-blog/layout/_partial/sidebar.ejs
:It would be great to be able to set the order in
_config.yml
where:would be a different order and activation setting than:
The text was updated successfully, but these errors were encountered: