PHPFusion\SeptenaryTheme::displayContent PHP Method

displayContent() public method

Render the theme content
public displayContent ( )
    public function displayContent()
    {
        // Septenary Theme Functions
        add_handler("theme_output");
        $this->setHeader();
        $this->open_grid('section-3', 1);
        echo !empty(AU_CENTER) || $this->top_html ? "<div class='au-content'>" . $this->top_html . AU_CENTER . "</div>\n" : '';
        echo "<div class='row'>\n";
        if (!empty(LEFT) || !empty(RIGHT) || !empty($this->left_html)) {
            echo "<div class='hidden-xs col-sm-3 col-md-3 col-lg-3 leftbar'>\n";
            echo RIGHT . LEFT . $this->left_html;
            echo "</div>\n";
        }
        echo "<div class='" . self::col_span() . " main-content'>\n";
        // Get all notices, we also include notices that are meant to be displayed on all pages
        echo renderNotices(getNotices(array('all', FUSION_SELF)));
        echo $this->upper_html . U_CENTER;
        echo CONTENT;
        echo $this->lower_html . L_CENTER;
        echo "</div>\n";
        echo !empty(BL_CENTER) || $this->bottom_html ? "<div class='bl-content'>" . $this->bottom_html . BL_CENTER . "</div>\n" : '';
        echo "</div>\n";
        $this->close_grid(1);
    }