Skip to content

Instantly share code, notes, and snippets.

@MattMS
Last active August 29, 2015 14:07
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 MattMS/b89798104dc61948ff7e to your computer and use it in GitHub Desktop.
Save MattMS/b89798104dc61948ff7e to your computer and use it in GitHub Desktop.
Jade base template with Markdown and CoffeeScript.
doctype html
html(lang="en")
head
meta(charset="utf-8")
meta(http-equiv="X-UA-Compatible", content="IE=edge")
meta(name="viewport", content="width=device-width, initial-scale=1.0, user-scalable=no")
title This is Jade
body
block content
extends ./_base.jade
block content
include:markdown README.md
script
:coffee
console.log 'It worked?'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment