Мопс (раньше известный как Jade) является устойчивым, изящным и многофункциональным движком шаблонов для Node.js.

Мопс (раньше Jade) является чистым, чувствительным к пробелу синтаксисом для записи HTML. Вот простой пример:

doctype html html(lang="en") head title= pageTitle - if (foo) bar(1 + 5) body h1 Pug - node template engine #container.col if youAreUsingPug p You are amazing else p Get on it! p. Pug is a terse and simple templating language with a strong focus on performance and powerful features. 

Производит следующий вывод как HTML:

<!DOCTYPE html> <html lang="en"> <head> <title>Pug</title> <script type="text/javascript"> if (foo) bar(1 + 5) </script> </head> <body> <h1>Pug - node template engine</h1> <div id="container" class="col"> <p>You are amazing</p> <p>Pug is a terse and simple templating language with a strong focus on performance and powerful features.</p> </div> </body> </html> 

Ссылки