-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (71 loc) · 4.17 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!-- Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. -->
<!-- See LICENSE in the project root for license information -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Outlook2SP</title>
<!-- Office JavaScript API -->
<script type="text/javascript" src="https://appsforoffice.microsoft.com/lib/1.1/hosted/office.debug.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://secure.aadcdn.microsoftonline-p.com/lib/0.1.5/js/msal.min.js"></script>
<!-- Office JavaScript API Helpers (via npm) -->
<script src="node_modules/@microsoft/office-js-helpers/dist/office.helpers.min.js"></script>
<!-- LOCAL -->
<link rel="stylesheet" href="node_modules/angular/angular-csp.css" />
<link rel="stylesheet" href="node_modules/office-ui-fabric-js/dist/css/fabric.min.css" />
<link rel="stylesheet" href="node_modules/office-ui-fabric-js/dist/css/fabric.components.css" />
<!-- CDN -->
<!-- For the Office UI Fabric, go to http://aka.ms/office-ui-fabric to learn more. -->
<!--<link rel="stylesheet" href="https://static2.sharepointonline.com/files/fabric/office-ui-fabric-js/1.2.0/css/fabric.min.css" />-->
<!--<link rel="stylesheet" href="https://static2.sharepointonline.com/files/fabric/office-ui-fabric-js/1.2.0/css/fabric.components.min.css" />-->
<!-- Template styles -->
<link href="app.css" rel="stylesheet" type="text/css" />
</head>
<body class="ms-font-m ms-welcome">
<header class="ms-welcome__header ms-bgColor-neutralLighter ms-u-fadeIn500">
<img width="90" height="90" src="assets/logo-filled.png" alt="Outlook2SP" title="Outlook2SP" />
<h1 class="ms-fontSize-su ms-fontWeight-light ms-fontColor-neutralPrimary">Welcome</h1>
</header>
<main class="ms-welcome__main" ng-controller="HomeController as home">
<h2 class="ms-font-xl ms-fontWeight-semilight ms-fontColor-neutralPrimary ms-u-slideUpIn20"> Discover what Outlook2SP can do for you today! </h2>
<ul class="ms-List ms-welcome__features ms-u-slideUpIn10">
<li class="ms-ListItem">
<i class="ms-Icon ms-Icon--Ribbon"></i>
<span class="ms-font-m ms-fontColor-neutralPrimary">Achieve more with Office integration</span>
</li>
<li class="ms-ListItem">
<i class="ms-Icon ms-Icon--Unlock"></i>
<span class="ms-font-m ms-fontColor-neutralPrimary">Unlock features and functionality</span>
</li>
<li class="ms-ListItem">
<i class="ms-Icon ms-Icon--Design"></i>
<span class="ms-font-m ms-fontColor-neutralPrimary">Create and visualize like a pro</span>
</li>
</ul>
<br />
<br />
<p class="ms-font-l">Modify the source files, then click <b>Run</b>.</p>
<button class="ms-welcome__action ms-Button ms-Button--hero ms-u-slideUpIn20" ng-click="home.run()">
<span class="ms-Button-label">Run</span>
<span class="ms-Button-icon"><i class="ms-Icon ms-Icon--ChevronRight"></i></span>
</button>
<p style="padding-top:20px">
<ul id="file-list" class="ms-List ms-firstrun-instructionstep__list">
<li class="ms-ListItem" ng-repeat="item in home.data">
<span class="ms-ListItem-secondaryText">
<span class="ms-fontColor-themePrimary">{{:item}}</span>
</span>
</li>
</ul>
</p>
</main>
<script type="text/javascript" src="node_modules/core-js/client/core.js"></script>
<script type="text/javascript" src="node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="node_modules/angular/angular.js"></script>
<script type="text/javascript" src="node_modules/office-ui-fabric-js/dist/js/fabric.js"></script>
<script type="text/javascript" src="app.js"></script>
</body>
</html>