├── .gitattributes ├── .gitignore ├── README.md └── SimpleSite ├── SimpleSite.sln └── SimpleSite ├── App_Start ├── BundleConfig.cs ├── FilterConfig.cs ├── IdentityConfig.cs ├── RouteConfig.cs └── Startup.Auth.cs ├── Content ├── Site.css ├── Themes │ ├── Amelia │ │ └── bootstrap.css │ ├── Darkly │ │ └── bootstrap.css │ └── Stock │ │ └── bootstrap.css ├── bootstrap-theme.css ├── bootstrap-theme.css.map ├── bootstrap-theme.min.css ├── bootstrap.css.map ├── bootstrap.custom.css └── bootstrap.min.css ├── Controllers ├── AccountController.cs ├── BaseController.cs ├── HomeController.cs ├── NotificationsController.cs ├── PersonController.cs ├── ProfileController.cs └── SimpleController.cs ├── Filters └── NotificationFilter.cs ├── Global.asax ├── Global.asax.cs ├── Helpers ├── Bootstrap.cs ├── GravatarHelper.cs └── GravatarOptions.cs ├── Migrations ├── 201408081918172_db-create.Designer.cs ├── 201408081918172_db-create.cs ├── 201408081918172_db-create.resx ├── 201408081950526_PersonalNotifications.Designer.cs ├── 201408081950526_PersonalNotifications.cs ├── 201408081950526_PersonalNotifications.resx ├── Configuration.cs └── Identity │ ├── 201408081928574_InitialCreate.Designer.cs │ ├── 201408081928574_InitialCreate.cs │ ├── 201408081928574_InitialCreate.resx │ ├── 201408081944401_CssTheme.Designer.cs │ ├── 201408081944401_CssTheme.cs │ ├── 201408081944401_CssTheme.resx │ └── Configuration.cs ├── Models ├── AccountViewModels.cs ├── Alert.cs ├── IdentityModels.cs ├── Notification.cs ├── NotificationViewModel.cs ├── Person.cs └── SiteDataContext.cs ├── Project_Readme.html ├── Properties └── AssemblyInfo.cs ├── Scripts ├── _references.js ├── bootstrap.js ├── bootstrap.min.js ├── jquery-1.10.2.intellisense.js ├── jquery-1.10.2.js ├── jquery-1.10.2.min.js ├── jquery-1.10.2.min.map ├── jquery.validate-vsdoc.js ├── jquery.validate.js ├── jquery.validate.min.js ├── jquery.validate.unobtrusive.js ├── jquery.validate.unobtrusive.min.js ├── modernizr-2.6.2.js ├── respond.js └── respond.min.js ├── SimpleSite.csproj ├── Startup.cs ├── Views ├── Account │ ├── ConfirmEmail.cshtml │ ├── ExternalLoginConfirmation.cshtml │ ├── ExternalLoginFailure.cshtml │ ├── ForgotPassword.cshtml │ ├── ForgotPasswordConfirmation.cshtml │ ├── Login.cshtml │ ├── Manage.cshtml │ ├── Register.cshtml │ ├── ResetPassword.cshtml │ ├── ResetPasswordConfirmation.cshtml │ ├── _ChangePasswordPartial.cshtml │ ├── _ExternalLoginsListPartial.cshtml │ ├── _RemoveAccountPartial.cshtml │ ├── _RenderNotifications.ModalPreview.cshtml │ ├── _RenderNotifications.js.cshtml │ └── _SetPasswordPartial.cshtml ├── Home │ ├── About.cshtml │ ├── Contact.cshtml │ └── Index.cshtml ├── Notifications │ ├── Create.cshtml │ ├── Delete.cshtml │ ├── Details.cshtml │ ├── Edit.cshtml │ └── Index.cshtml ├── Person │ ├── Create.cshtml │ ├── Index.cshtml │ ├── _PersonSearchForm.cshtml │ └── _SearchPeople.cshtml ├── Shared │ ├── DisplayTemplates │ │ ├── BooleanButtonLabel.cshtml │ │ └── Person.cshtml │ ├── EditorTemplates │ │ └── BooleanButtonLabel.cshtml │ ├── Error.cshtml │ ├── _Alerts.cshtml │ ├── _Layout.cshtml │ ├── _LoginPartial.cshtml │ ├── _MenuPartial.cshtml │ ├── _RenderNotifications.Modal.cshtml │ ├── _RenderNotifications.cshtml │ └── _StringCollection.cshtml ├── Simple │ ├── Create.cshtml │ └── Index.cshtml ├── Web.config └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf └── glyphicons-halflings-regular.woff └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/README.md -------------------------------------------------------------------------------- /SimpleSite/SimpleSite.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite.sln -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/App_Start/IdentityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/App_Start/IdentityConfig.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Content/Site.css -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Content/Themes/Amelia/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Content/Themes/Amelia/bootstrap.css -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Content/Themes/Darkly/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Content/Themes/Darkly/bootstrap.css -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Content/Themes/Stock/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Content/Themes/Stock/bootstrap.css -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Content/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Content/bootstrap-theme.css.map -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Content/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Content/bootstrap.css.map -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Content/bootstrap.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Content/bootstrap.custom.css -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Content/bootstrap.min.css -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Controllers/AccountController.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Controllers/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Controllers/BaseController.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Controllers/HomeController.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Controllers/NotificationsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Controllers/NotificationsController.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Controllers/PersonController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Controllers/PersonController.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Controllers/ProfileController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Controllers/ProfileController.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Controllers/SimpleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Controllers/SimpleController.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Filters/NotificationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Filters/NotificationFilter.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Global.asax -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Global.asax.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Helpers/Bootstrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Helpers/Bootstrap.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Helpers/GravatarHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Helpers/GravatarHelper.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Helpers/GravatarOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Helpers/GravatarOptions.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Migrations/201408081918172_db-create.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Migrations/201408081918172_db-create.Designer.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Migrations/201408081918172_db-create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Migrations/201408081918172_db-create.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Migrations/201408081918172_db-create.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Migrations/201408081918172_db-create.resx -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Migrations/201408081950526_PersonalNotifications.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Migrations/201408081950526_PersonalNotifications.Designer.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Migrations/201408081950526_PersonalNotifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Migrations/201408081950526_PersonalNotifications.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Migrations/201408081950526_PersonalNotifications.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Migrations/201408081950526_PersonalNotifications.resx -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Migrations/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Migrations/Configuration.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Migrations/Identity/201408081928574_InitialCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Migrations/Identity/201408081928574_InitialCreate.Designer.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Migrations/Identity/201408081928574_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Migrations/Identity/201408081928574_InitialCreate.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Migrations/Identity/201408081928574_InitialCreate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Migrations/Identity/201408081928574_InitialCreate.resx -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Migrations/Identity/201408081944401_CssTheme.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Migrations/Identity/201408081944401_CssTheme.Designer.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Migrations/Identity/201408081944401_CssTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Migrations/Identity/201408081944401_CssTheme.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Migrations/Identity/201408081944401_CssTheme.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Migrations/Identity/201408081944401_CssTheme.resx -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Migrations/Identity/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Migrations/Identity/Configuration.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Models/AccountViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Models/AccountViewModels.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Models/Alert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Models/Alert.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Models/IdentityModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Models/IdentityModels.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Models/Notification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Models/Notification.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Models/NotificationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Models/NotificationViewModel.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Models/Person.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Models/SiteDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Models/SiteDataContext.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Project_Readme.html -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Scripts/_references.js -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Scripts/bootstrap.js -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Scripts/respond.js -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Scripts/respond.min.js -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/SimpleSite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/SimpleSite.csproj -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Startup.cs -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Account/ExternalLoginConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Account/ExternalLoginConfirmation.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Account/ExternalLoginFailure.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Account/Manage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Account/Manage.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Account/_ChangePasswordPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Account/_ChangePasswordPartial.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Account/_ExternalLoginsListPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Account/_ExternalLoginsListPartial.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Account/_RemoveAccountPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Account/_RemoveAccountPartial.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Account/_RenderNotifications.ModalPreview.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Account/_RenderNotifications.ModalPreview.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Account/_RenderNotifications.js.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Account/_RenderNotifications.js.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Account/_SetPasswordPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Account/_SetPasswordPartial.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Home/About.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Notifications/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Notifications/Create.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Notifications/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Notifications/Delete.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Notifications/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Notifications/Details.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Notifications/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Notifications/Edit.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Notifications/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Notifications/Index.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Person/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Person/Create.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Person/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Person/Index.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Person/_PersonSearchForm.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Person/_PersonSearchForm.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Person/_SearchPeople.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Person/_SearchPeople.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Shared/DisplayTemplates/BooleanButtonLabel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Shared/DisplayTemplates/BooleanButtonLabel.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Shared/DisplayTemplates/Person.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Shared/DisplayTemplates/Person.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Shared/EditorTemplates/BooleanButtonLabel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Shared/EditorTemplates/BooleanButtonLabel.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Shared/_Alerts.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Shared/_Alerts.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Shared/_MenuPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Shared/_MenuPartial.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Shared/_RenderNotifications.Modal.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Shared/_RenderNotifications.Modal.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Shared/_RenderNotifications.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Shared/_RenderNotifications.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Shared/_StringCollection.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Shared/_StringCollection.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Simple/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Simple/Create.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Simple/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Simple/Index.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/Web.config -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Web.Debug.config -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Web.Release.config -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/Web.config -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/favicon.ico -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /SimpleSite/SimpleSite/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/BootstrappingMvc-Code/HEAD/SimpleSite/SimpleSite/packages.config --------------------------------------------------------------------------------