I am using slim
as my rendering engine. Here is my application.slim
doctype html
html
head
title Hello
body
= yield
Here is my view ("views/welcome/index.slim")
h1 Hello
The application.slim is being rendered correctly, but I see "< h1>Hello< /h1>" on the page.
Any ideas?