I am currently introducing myself to jade with node.js
As I want to avoid redundancy, I thought about adding a domain name to the currect header, for example. Blog | example.com
My Jade template gets Blogthrough node.js router how title. Now I want to add | example.comto the header, but I do not know how to do this when my template looks like this:
!!! 5
html(lang="de")
head
meta(charset="utf-8")
title= title
How do I change the last line to add text?
I hope my question is clear enough.
aydio source
share