Created
November 24, 2015 03:17
-
-
Save simkessy/118d061a23d4abe3a55b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<%-- The following 4 lines are ASP.NET directives needed when using SharePoint components --%> | |
<%@ Page Inherits="Microsoft.SharePoint.WebPartPages.WebPartPage, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" MasterPageFile="~masterurl/default.master" Language="C#" %> | |
<%@ Register TagPrefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> | |
<%@ Register TagPrefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> | |
<%@ Register TagPrefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> | |
<%-- The markup and script in the following Content element will be placed in the <head> of the page --%> | |
<asp:Content ContentPlaceHolderID="PlaceHolderAdditionalPageHead" runat="server"> | |
<script type="text/javascript" src="/_layouts/15/sp.runtime.js"></script> | |
<script type="text/javascript" src="/_layouts/15/sp.js"></script> | |
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/labjs/2.0.3/LAB.min.js"></script> | |
<script type="text/javascript" src="./../SiteAssets/projects/spDash/app/js/loader.js"></script> | |
<!-- Add your CSS styles to the following file --> | |
<!-- CDN RESOURCES --> | |
<!-- Bootstrap --> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"> | |
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet"> | |
<!-- Selected 2 --> | |
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/angular-ui-select/0.8.3/select.min.css"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/select2/3.4.5/select2.css"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/select2/3.4.5/select2-bootstrap.css"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/select2/3.4.5/select2-spinner.gif"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/select2/3.4.5/select2.png"> | |
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/select2/3.4.5/select2.css"> --> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/select2/3.4.5/select2.min.css"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.8.5/css/selectize.default.css"> | |
<!-- DataTables --> | |
<link rel="stylesheet" type="text/css" href="https://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.4/css/jquery.dataTables_themeroller.css"> | |
<link type="text/css" rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/dark-hive/jquery-ui.css"/> | |
<!-- <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/plug-ins/9dcbecd42ad/integration/bootstrap/3/dataTables.bootstrap.css"> --> | |
<!-- <link type="text/css" rel="stylesheet" href="https://cdn.datatables.net/fixedcolumns/3.0.0/css/dataTables.fixedColumns.min.css"/> --> | |
<link type="text/css" rel="stylesheet" href="https://cdn.datatables.net/colvis/1.1.0/css/dataTables.colVis.min.css"/> | |
<link type="text/css" rel="stylesheet" href="https://cdn.datatables.net/responsive/1.0.2/css/dataTables.responsive.css"/> | |
<link type="text/css" rel="stylesheet" href="https://cdn.datatables.net/tabletools/2.2.0/css/dataTables.tableTools.min.css"/> | |
<!-- Animations --> | |
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.0.0/animate.min.css"> | |
<!-- <link rel="stylesheet" type="text/css" href="./../SiteAssets/projects/spDash/app/css/ngAnimate.css"> --> | |
<!-- <link rel="stylesheet" type="text/css" href="./../SiteAssets/projects/spDash/app/css/animate.css"> --> | |
<!-- DEV RESOURCES --> | |
<!-- General fixes --> | |
<link rel="stylesheet" type="text/css" href="./../SiteAssets/projects/spDash/app/css/fixes.css"/> | |
<!-- Loading animation --> | |
<link type="text/css" rel="stylesheet" href="./../SiteAssets/projects/spDash/app/css/angular-busy.css"/> | |
<link type="text/css" rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/toastr.js/2.0.2/css/toastr.min.css"/> | |
</asp:Content> | |
<%-- Contains application title--%> | |
<asp:Content ContentPlaceHolderID="PlaceHolderPageTitleInTitleArea" runat="server"> | |
SP Site Controller | |
</asp:Content> | |
<%-- Contains Application mark up--%> | |
<asp:Content ContentPlaceHolderID="PlaceHolderMain" runat="server"> | |
<br> | |
<div id="mdContainer" class="mdContainer animated fadeInDown container-fluid" ng-cloak> | |
<!-- Navigation --> | |
<div ng-include=" 'navigation.html' " class="animated fadeInDown"></div> | |
<!-- Main view --> | |
<ui-view></ui-view> | |
</div> | |
</asp:Content> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment