I need assistance with formatting post titles into a table with 2 columns.
Here is an example layout I am aiming for:
-------------------------------
post title 1 | post title 2
-------------------------------
post title 3 | post title 4
-------------------------------
post title 5 | post title 6
I have managed to display the post titles individually, but I am unsure how to organize them into a table with columns.
Below is the code snippet I have been working on. Note: My understanding of blogger theme development is limited
Code Snippet:
<b:section class='main' id='main' name='Main' showaddelement='yes'>
<b:widget id='Blog1' locked='false' title='Blog Posts' type='Blog'>
<b:includable id='main' var='top'>
<b:include name='allposts'/>
</b:includable>
<b:includable id='allposts'>
<b:loop var='thisPost' values='data:posts'>
<h2>
<a expr:href='data:thisPost.url'> <data:thisPost.title/></a>
</h2>
</b:loop>
</b:includable>
</b:widget>