I've just discovered this way to output things on php templates:
<body>
my name is
<?= $params['name'] ?>
...
That should be equal to:
<body>
my name is
<?php echo $params['name'] ?>
...
It's a very cool and clean syntax, but my question is: is legit? Or is deprecated?