In a previous version of EasyBlog, I modified the Elegant template to add date information after the author avatar. After the div with class eb-post-author-avatar, I would like to insert the following html:
<div>
<div class="eb-post-calendar" content="2021-12-28">
<div class="eb-post-calendar-m">Dec</div>
<div class="eb-post-calendar-d"> 28</div>
<div class="eb-post-calendar-y"> 2021</div>
</div>
</div>
I found the 'list/default.php' file to override, but I can't figure out the specific $post variables/functions to use in order to insert correctly. Is there a simple method to do this?