Files
lunchrun.me/views/layout.ejs
Ben Ramey 2a34de5580 Sails app
2014-03-08 18:32:43 -06:00

97 lines
2.8 KiB
Plaintext

<!DOCTYPE html>
<html>
<head>
<!--
For demonstration purposes, the `title` is dynamically set here based on
your `sails.config.appName` to show that you can inject data into layouts
exactly the same way as with your other view templates.
-->
<title><%- title %></title>
<!-- Viewport mobile tag for sensible mobile support -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<!--
Stylesheets
========================
You can link any CSS, LESS, or image files in your `assets` directory
as you would normally: using <link/> tags.
-->
<!--
Support for LESS included by default
================================================
LESS files are automatically compiled when they change using the Gruntfile
located in the top-level of this Sails app. If you run into issues with styles
not reloading, check the Sails log output in your console for LESS compilation errors.
If necessary, shut down and then lift your app again.
-->
</head>
<body>
<!-- Include the view file for the current controller/route -->
<%- body %>
<!--
Client-side Javascript
========================
You can import any js files in your `assets` directory as you would
normally: using <script></script> tags.
Here's an example of importing a few dependencies, in order:
-->
<!-- Bring in the socket.io client -->
<script type="text/javascript" src="/js/socket.io.js"></script>
<!-- then beef it up with some convenience logic for talking to Sails.js -->
<script type="text/javascript" src="/js/sails.io.js"></script>
<!-- listen on socket.io for incoming messages -->
<script type="text/javascript" src="/js/app.js"></script>
<!-- Your scripts here? -->
<!-- Your scripts here? -->
<!-- Your scripts here? -->
<!--
Looking for client-side CoffeeScript or TypeScript?
================================================
CoffeeScript and TypeScript precompilation are not installed by default,
but if you'd like to mix those features in, it is straightforward to
`npm install` the relevant grunt community modules and modify your Gruntfile
to use them.
-->
<!--
Another way: The Asset Linker
========================
Sails supports a Grunt-based asset linker, to automatically inject
<link> and <script> tags, as well any client-side templates you're using
into your HTML layouts and views, respecting dependencies.
You created this Sails app with the asset linker disabled.
If you change your mind, check out the docs on the subject:
http://sailsjs.org/#!documentation/asset-management
-->
</body>
</html>