• Hey…I’m trying to add a table on my static homepage that shows the blog/post page.
    NOT a link to the blog, but an actual <td> that features the index page of my blog.
    Any ideas?

Viewing 1 replies (of 1 total)
  • I have never done a complete page, only a single blog post, but it should be possible. You will need a second loop to retrieve the posts and then coding to build the table. If you want only one column, the logic should be something like this:

    Do the query
    If there are any posts
       Start the table
       While more posts
          Start the row
          Start the cell
          Display the post
          End the cell
          End the row
       End While
       End the table
    End If

    Personally, I would use div’s with CSS and not a table, but that is just my preference.

Viewing 1 replies (of 1 total)
  • The topic ‘Post Window In Homepage’ is closed to new replies.