And is someone might want to add dynamic parts? with functions like the well known wordpress loop?
Like this
`<?php `
`if` `( have_posts() ) : `
` ` `while` `( have_posts() ) : the_post(); `
` ` `the_title( ` `'<h2>'` `, ` `'</h2>'` `); `
` ` `the_post_thumbnail(); `
` ` `the_excerpt();`
` ` `endwhile` `; `
`else` `: `
` ` `_e( ` `'Sorry, no posts matched your criteria.'` `, ` `'textdomain'` `); `
`endif` `; `
`?>`
Maybe eex is not bad idea for the start to keep everything simple






















