thywill
Version:
A Node.js clustered framework for single page web applications based on asynchronous messaging.
44 lines (39 loc) • 1.59 kB
HTML
<!--
A Thywill service using the SocketIoClientInterface to run one or more
applications must specify one or more main page templates as text/html
Resources.
All text/html resources are templated by SocketIOClientInterface.
This page uses Handlebars templating because Handlebars is specified as the
templating engine in the Thywill configuration. It could use any template
engine with a Thywill component.
The following variables are made available by Thywill, and should NOT be
escaped:
encoding
The page encoding, e.g. UTF-8.
bootstrapCss
HTML <style> elements for the CSS bootstrap resources.
bootstrapJs
HTML <script> elements for the Javascript bootstrap resources.
bootstrapTemplates
HTML <script> elements for template bootstrap resources.
-->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--><html data-ng-app="tabular" class="no-js" lang="en"><!--<![endif]-->
<head>
<meta charset="{{{encoding}}}" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Thywill: Tabular Application</title>
{{{bootstrapCss}}}
{{{bootstrapJs}}}
{{{bootstrapTemplates}}}
</head>
<body data-ng-view>
<!--
In this case the AngularJS application is going to populate the DOM from
a loaded partial, so there is no HTML in the body.
-->
</body>
</html>