MODX snippet to use file based templates.
<?php
# Snippet to include file based templates
# USAGE: [[LoadTemplate? &tpl=`template.tpl`]]
$base_path = $modx->config['base_path'];
if ( !isset($tpl) || $tpl== "" ) return "Missing Template file!";
$tpl = $base_path .'assets/templates/'.$tpl; // change to your tpl dir path
ob_start();
include($tpl);
return ob_get_clean();
//?>