air-datepicker/docs/jade/layout.jade
2015-11-30 12:38:14 +03:00

37 lines
1.2 KiB
Plaintext

include mixins/example
include mixins/example-content
include mixins/example-code
include mixins/example-inline
include mixins/param
include mixins/param-header
doctype html
html
head
title Air Datepicker
meta(charset='UTF-8')
meta(name="viewport" content="width=device-width, initial-scale=1")
link(href='css/style.css', rel='stylesheet', type='text/css')
link(href='css/github-gist.css', rel='stylesheet', type='text/css')
link(href='../dist/css/datepicker.min.css', rel='stylesheet', type='text/css')
link(href='https://fonts.googleapis.com/css?family=Fira+Sans:400,300,500&subset=latin,cyrillic', rel='stylesheet', type='text/css')
script(src='https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js')
script(src='http://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.9.1/highlight.min.js')
script(src='http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js')
script(src='../dist/js/datepicker.js')
script(src='../dist/js/i18n/datepicker.en.js')
body
div.wrapper
main.main(role='main')
.container
block content
script(src='js/navigation.js')
script.
var $code = $('code');
$code.each(function (i, el) {
hljs.highlightBlock(el);
})
navigation.init();