12 lines
275 B
PHP
12 lines
275 B
PHP
<?php
|
|
/**
|
|
* Template Name: Plantilla de Servicio
|
|
* Description: Para páginas donde se describe un servicio.
|
|
*/
|
|
|
|
$context = Timber::context();
|
|
|
|
$timber_post = Timber::get_post();
|
|
$context['post'] = $timber_post;
|
|
|
|
Timber::render( ['template-servicio.twig'], $context ); |