require 'menu.php';
?>
	<?php 
require '../sections/' . WPMJG::get_current_section() . '/index.php';
?>
	<div class="entry-template">
		<h3>Title</h3>
		<p>Content</p>
		<div class="example">
			<h3>Example: title</h3>
			<h4>Live Example <a class="add-new-h2" target="_blank" href="<?php 
echo WPMJG::get_example_url(WPMJG::get_current_section(), 1);
?>
">open in a new window</a></h4>
			<iframe class="iframe-interactive-demo" src="<?php 
echo WPMJG::get_example_url(WPMJG::get_current_section(), 1);
?>
"></iframe>
			<h4>Markup</h4>
			<pre><code class="language-html"><?php 
WPMJG()->the_section_example_markup(WPMJG::get_current_section(), 1);
?>
</code></pre>
			<h4>Javascript</h4>
			<pre><code class="language-javascript"><?php 
WPMJG()->the_section_example_javascript(WPMJG::get_current_section(), 1);
?>
</code></pre>
		</div>
	</div>
</div>
    {
        return sprintf('<a href="%s">%s</a>', self::get_section_url($section_id), $section_id);
    }
    /**
     * Output a link to a section.
     *
     * @param  string $section_id
     */
    public function the_section_link($section_id)
    {
        echo self::get_section_link($section_id);
    }
    /**
     * Output the "inherited from..." text.
     *
     * @param  string $object
     */
    public function inherited_from_text($object)
    {
        printf('<span class="inheritance-info">inherited from <code>%s</code></span>', self::get_section_link($object));
    }
}
/**
 * Facade for singleton access.
 */
function WPMJG()
{
    return WPMJG::get_instance();
}
WPMJG();