<?php

header('Content-type:text/html;charset=utf-8');
require_once 'Mep/init.php';
use Mep\Container as Mep, Mep\Handlers\FiltroPost as Post;
try {
    $pagina = Post::PAGINA();
    Mep::getLayout()->renderContents("servicos/{$pagina}");
} catch (Exception $ex) {
    Mep::getLayout()->renderNotFound();
    die;
}