Hi,
go:
1- At the bottom of your app->See how NAML generates this page.
2- At the engine wheel -> "Search for macro" .
3- Macro by name -> search for "news_table" .
4 - news_table -> "override this macro" .
Your original macro is:
<macro name="news_table">
<table id="news-table" class="news-table medium-border-color">
<n.page_node.topics_list.
sort="pinned-and-root-node-date"
start="[n.app_index_record/]"
you have to change your "sort" attribute. Replace with this:
<override_macro name="news_table">
<table id="news-table" class="news-table medium-border-color">
<n.page_node.topics_list.
sort="pinned-and-last-node-date"
start="[n.app_index_record/]"
See if it is what you want.