1<head>
2 <link rel="import" href="/path/to/imports/stuff.html">
3</head>
4
1$(function () {
2 var includes = $('[data-include]')
3 $.each(includes, function () {
4 var file = 'views/' + $(this).data('include') + '.html'
5 $(this).load(file)
6 })
7})
8