-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfeed.html
61 lines (60 loc) · 3.9 KB
/
feed.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>PowerDesktop - news & feed</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet" />
<link rel="stylesheet" href="https://static2.sharepointonline.com/files/fabric/office-ui-fabric-js/1.4.0/css/fabric.min.css" />
<link rel="stylesheet" href="https://static2.sharepointonline.com/files/fabric/office-ui-fabric-js/1.4.0/css/fabric.components.min.css" />
<script src="https://static2.sharepointonline.com/files/fabric/office-ui-fabric-js/1.4.0/js/fabric.min.js"></script>
<link rel="stylesheet" href="style.css" />
<script src="feed.js"></script>
</head>
<body onresize="Window_OnResize();">
<header>
<img id="app_logo" src="img/PowerDesktop.png" height="60" width="60" />
<h3 id="app_title">Power Desktop</h3>
<button id="download_app_button" class="ms-Button ms-Button--primary" onclick="NavigateTo('download.html');">
<span class="ms-Button-label">Get Preview</span>
</button>
<div id="menu_nav" style="position: absolute; right: 175px; top: 30px;">
<a class="link" style="margin-right: 15px;" href="home.html">Home</a>
<a class="link" style="margin-right: 15px;" href="apps.html">Power Apps</a>
<a class="link_selected" href="feed.html">Feed & news</a>
</div>
</header>
<section id="content">
<div id="content_div">
<h1 id="page_title">Feed & news</h1>
<div class="table">
<div class="table_item">
<div class="fb-like" data-href="https://facebook.com/Dmitriy.windows.developer" data-width="" data-layout="button_count" data-action="like" data-size="large" data-share="true"></div>
</div>
</div>
<div class="fb-page"
data-tabs="timeline,events,messages"
data-href="https://www.facebook.com/Dmitriy.windows.developer"
data-width="450"
data-hide-cover="false"
data-height="600"></div>
<script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v11.0" nonce="keoYDTqF"></script>
<div class="fb-page" data-href="https://www.facebook.com/dmitriy.windows.dev" data-tabs="timeline" data-width="" data-height="" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="false"></div>
</div>
<a class="twitter-timeline" href="https://twitter.com/dev_dmitriy?ref_src=twsrc%5Etfw">Tweets by dev_dmitriy</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</section>
<footer>
<div style="text-align: center; padding-top: 45px;">
<button class="ms-Button ms-Button--small" style="margin: 3px; margin-bottom: 10px;" onclick="SendReview();">
<span class="ms-Button-label">Send review</span>
</button>
<button class="ms-Button ms-Button--small" style="margin: 3px; margin-bottom: 10px;" onclick="NavigateTo('privacy/index.html');">
<span class="ms-Button-label">Privacy Policy</span>
</button>
<a style="margin: 3px; margin-top: 20px;" href="https://twitter.com/intent/tweet?screen_name=DmitriyJulia&ref_src=twsrc%5Etfw" class="twitter-mention-button" data-size="large" data-text="Follow" data-related="DmitriyJulia,DmitriyJulia" data-show-count="false">Tweet to @DmitriyJulia</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</footer>
</body>
</html>