Exemplo n.º 1
0
<?php

include_once 'inc/classCaller.php';
$layout = new Layout();
$layout->get_header();
$layout->get_content('front-page', 'Envie sua foto');
$layout->get_footer();
Exemplo n.º 2
0
<?php

include_once 'inc/classCaller.php';
$layout = new Layout();
$layout->get_header(true);
$layout->get_content('add-page', 'Editar Texto da Página Inicial');
$layout->get_footer();
Exemplo n.º 3
0
<?php

include_once 'inc/classCaller.php';
$layout = new Layout();
$layout->get_header(false, true);
$layout->get_content('login-page', 'Login');
$layout->get_footer();
Exemplo n.º 4
0
<?php

include_once 'inc/classCaller.php';
$layout = new Layout();
$layout->get_header(true);
$layout->get_content('cursos-page', 'Cursos');
$layout->get_footer();
Exemplo n.º 5
0
<?php

include_once 'inc/classCaller.php';
$layout = new Layout();
$layout->get_header(true);
$layout->get_content('turma-page', $_GET['turma'], true);
$layout->get_footer();