The Basic Template

The Basic Template

The Content

The plugin adds editable content to the_content() function of the current page template.
<div class="content">
  // start the loop
 <?php the_content(); ?>
  // end the loop
</div>

// will get rendered like the following:
<div class="content">
 // rendered html from Plato Pages
</div>
It's that simple!