Hi and thanks for this modules sir.
For days, I follow https://web.archive.org/web/20150227095218/http://www.kongondo.com/tutorials, the docs, the forum and the source at https://github.com/kongondo/Blog/blob/master/MarkupBlog.module. Time for me now to ask help.
I would like to know what is the best way to get only posts's title, for example to show them in list in the footer of a page ?
Note: I have a newbie's experience with ProcessWire
<div class="col-sm-4">
<h3>Recents</h3>
<?php
$blog = $modules->get('MarkupBlog');
$posts = $pages->find("template=blog-post, limit=5");
foreach ($post as $posts) {
var_dump($post);
}
?>
</div>