<?php 
foreach ($posts as $post) {
    ?>

        <ul>
            <li>
                <a href="<?php 
    echo $wix->getSectionUrl();
    ?>
/post.show.php?title=<?php 
    echo $post->getTitle();
    ?>
"
                   style="color: #000; font-size: 12px; text-transform: uppercase"
                   target="<?php 
    echo $wix->getTarget();
    ?>
"><?php 
    echo $post->getTitle();
    ?>
</a>
                <br/>

                <?php 
    if ($widgetSettings->getSetting("withPostedBy", true)) {
        // Do we want to see by who?
        ?>
                <div style="font-size: 10px">Posted by <span style="font-weight: bold">Wix Staff</span>, at
                    <time>10:37 am</time>
                    on this blog
                </div>