Hi @FMesina
Looks like the issue is with this line:
{% set module.sort_date = effective_date %}
Anything that starts with “module.” is coming from the inputs of the module and cannot be changed by HubL. In order for that line to work, it would need to be a simple variable.
{% set custom_sort_date = effective_date %}
<p>Sort Date: {{custom_sort_date}}</p>
If you want to pull data from the module into the blog listing page, I believe it will only allow pulling the input values (that start with “module”, not the variables).
Assuming you want to pull the value for “updated_date”, your code in the listing template would look something like this:
{{ content.widgets.module_XXXXXXXXXXXX.body.updated_date }}
The XXXXXXXXXXXX would be the numerical ID of that original blog post module.
Hope this helps!