Skip to content

Instantly share code, notes, and snippets.

@unamashana
Created December 20, 2013 08:59

Revisions

  1. @prateekdayal prateekdayal created this gist Dec 20, 2013.
    24 changes: 24 additions & 0 deletions basic_template.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,24 @@
    <!doctype html>

    <html lang="en">
    <head>
    <meta charset="utf-8">

    <title>Kickass App</title>
    <meta name="description" content="My Kickass App">

    <link rel="stylesheet" href="/css/styles.css">
    <script src="/js/jquery.js"></script>
    <script src="/js/my_compiled.js"></script>
    </head>

    <body>

    <div id="placeholder"></div>

    $(document).ready({
    window.mainView = new SB.Views.MainView
    });

    </body>
    </html>