Skip to content

Instantly share code, notes, and snippets.

@weotch
Created April 18, 2016 01:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weotch/14bd36f8c46ac2a461e319071277d790 to your computer and use it in GitHub Desktop.
Save weotch/14bd36f8c46ac2a461e319071277d790 to your computer and use it in GitHub Desktop.
Jade demo
<!DOCTYPE html>
<html lang="en">
<head>
<title>Jade</title>
</head>
<body>
<h1>Jade - node template engine</h1>
<div id="container" class="col">
<p>You are amazing</p>
<p>
Jade is a terse and simple
templating language with a
strong focus on performance
and powerful features.
</p>
</div>
</body>
</html>
doctype html
html(lang="en")
head
title Jade
body
h1 Jade - node template engine
#container.col
p You are amazing
p.
Jade is a terse and simple
templating language with a
strong focus on performance
and powerful features.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment