1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
doctype html
html
head
meta(charset='utf-8')
title Jade - Template Engine
meta(name='viewport', content='width=device-width, initial-scale=1.0')
link(rel='stylesheet', href="/style/bundle.css")
include ./includes/mixins.jade
body
body
#wrap
#content
.logo-container
a(href=path('/'))
img(src="/style/logo.png")
.sr-only Jade - Node Template Engine
.navbar.navbar-default.navbar-static-top
.container
.navbar-header.visible-sm.visible-xs
button.navbar-toggle(type='button' data-toggle='collapse' data-target='.navbar-collapse')
span.sr-only Toggle navigation
span.icon-bar
span.icon-bar
span.icon-bar
a.navbar-brand(href=path('/')) JADE
.collapse.navbar-collapse
ul.nav.navbar-nav
block navsections
li(class=section === 'reference' ? 'active' : false)
a(href=path('/reference')) Language Reference
li(class=section === 'api' ? 'active' : false)
a(href=path('/api')) API
li(class=section === 'command-line' ? 'active' : false)
a(href=path('/command-line')) Command Line
ul.nav.navbar-nav.navbar-right
li(class=section === 'history' ? 'active' : false)
a(href='/history') Change Log
li: a(href=path('/coverage/')) Code Coverage
li: a(href='https://travis-ci.org/visionmedia/jade') Test Results
li: a(href='https://github.com/visionmedia/jade') GitHub Repository
block navigation
.container
block content
#push
#footer-wrapper
footer
.container
p
| Jade is a template language maintained by
a(href='http://www.forbeslindesay.co.uk') @ForbesLindesay
|.
include ./includes/ga.jade
script(src=path("/client.js"))
script(src="http://code.jquery.com/jquery-2.1.1.min.js")
script(src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js")
|