This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var express = require('express'), | |
stylus = require('stylus'), | |
logger = require('morgan'), | |
bodyParser = require('body-parser'), | |
mongoose = require('mongoose'); | |
var env = process.env.NODE_ENV = process.env.NODE_ENV || 'development'; | |
var app = express(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html><html><head><link href="/favicon.ico" rel="shortcut icon" type="image/x-icon"><link rel="stylesheet" href="/css/bootstrap.css"><link rel="stylesheet" href="/css/site.css"><link rel="stylesheet" href="/css/mystyles.css"><base href="/"></head><body ng-app="app"><section class="content"></section><div ng-view></div><script type="text/javascript" src="/node_modules/jquery/src/jquery.js"><script type="text/javascript" src="/node_modules/angular/angular.js"><script type="text/javascript" src="/node_modules/angular-resource/angular-resource.js"><script type="text/javascript" src="/node_modules/angular-route/angular-route.js"><script type="text/javascript" src="/app/app.js"></script></script></script></script></script></body></html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#index.html | |
<!DOCTYPE html><html><head><base href="/"><link href="/favicon.ico" rel="shortcut icon" type="image/x-icon"><link rel="stylesheet" href="/css/bootstrap.css"><link rel="stylesheet" href="/vendor/toastr/toastr.css"><link rel="stylesheet" href="/css/site.css"><link rel="stylesheet" href="/css/mystyles.css"></head><body class="bgimage"><section class="content"></section><h1>Hello, World</h1><script>type="text/javascript", src="/node_modules/jquery/src/jquery.js"<script>type="text/javascript", src="/node_modules/angular/angular.js"<script>type="text/javascript", src="/node_modules/angular-resource/angular-resource.js"<script>type="text/javascript", src="/node_modules/angular-route/angular-route.js"<script>type="text/javascript", src="/app/app.js"</script></script></script></script></script></body></html> | |
#index.jade | |
extends ../includes/layout.jade | |
block main-content | |
section.content | |
h1 Hello, World |