I would like to understand if there is something easy to find most viewed pages to implement a “popular” blog articles feature.
So far I get latest articles by doing this:
{% for post in page.find('/blog').collection({'items': '@self.descendants','order': {'by': 'date','dir': 'desc'}}) %}
Thanks,