To create a template for easymagazine is more a taste issue then technical.
Everything is optimized to leave as less PHP code is possible between the HTML tags.
Maybe for most of you, the quicker way to start is just play with the existing templates or
with the skeleton,
but, please, take a look to te following lines, you'll find some useful information.
The organization of data structure in Easy Magazine is designed to speed up your job, if you name the file in the right way, you will be sure the right data will be accessible and ready to use. For example if you are working on the file numberslist.php system loads for you a list of all numbers of the magazine in the array $this->numberslist. So, to display the titles of all your magazines, you need just to type:
foreach($this->numberslist as $nu):
echo $nu->getTitle()
endforeach;
Obviously to finish the job you'll need some css file and some image. :-)
Now I'm driving you to build a complete template step by step.