Created
April 18, 2016 01:55
-
-
Save weotch/14bd36f8c46ac2a461e319071277d790 to your computer and use it in GitHub Desktop.
Jade demo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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