forked from glennparham/sentimently
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·77 lines (55 loc) · 3.31 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Basic Usage</title>
<link rel='stylesheet prefetch' href='https://cdn.gitcdn.link/cdn/angular/bower-material/v1.1.8/angular-material.css'>
<link rel='stylesheet prefetch' href='https://material.angularjs.org/1.1.8/docs.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div ng-controller="AppCtrl" ng-cloak="" layout-gt-sm="row" layout="column" class="listdemoBasicUsage" ng-app="MyApp">
<md-card>
<div flex="">
<md-toolbar layout="row" class="md-hue-3">
<div class="md-toolbar-tools">
<span>Here's to lifted spirits...</span>
</div>
</md-toolbar>
<md-content>
<md-list flex="">
<md-subheader class="md-no-sticky">Some things that might cheer you up:</md-subheader>
<md-list-item class="md-3-line" ng-click="null" style="background-color:white;" onclick="window.open('http://www.latimes.com/politics/essential/la-pol-ca-essential-politics-updates-here-s-another-glimpse-of-kamala-harris-1520551387-htmlstory.html');">
<div class="md-list-item-text" layout="column">
<h3>Here's another glimpse of Kamala Harris' finances as she looks to 2020</h3>
<h4>By The LA TIMES</h4>
<p>California Sen. Kamala Harris, who is serving her first term, has an estimated net worth that puts her financially near the middle of the pack in a delegation that includes both the richest and poorest members of Congress.</p>
</div>
</md-list-item>
<hr></hr>
<md-list-item class="md-3-line" ng-click="null" style="background-color:white;" onclick="window.open('https://www.realclearpolitics.com/video/2018/03/08/kamala_harris_on_immigration_sessions_wants_to_roll_back_the_clock_california_represents_the_future_.html');">
<div class="md-list-item-text" layout="column">
<h3>Kamala Harris On Immigration: Sessions Wants To Roll Back The Clock, "California Represents The Future"</h3>
<h4>By REALCLEAR POLITICS</h4>
<p>Sen. Kamala Harris (D-CA) appeared on MSNBC's All In with host Chris Hayes Wednesday night to discuss Attorney General Jeff Sessions' speech on California ignoring the nation's immigration laws and likening it to nullification.</p>
</div>
</md-list-item>
</md-list>
</md-content>
</md-card>
</div>
</div>
<!--
Copyright 2016 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that can be foundin the LICENSE file at http://material.angularjs.org/HEAD/license.
-->
<script src='https://ajax.googleapis.com/ajax/libs/angularjs/1.6.7/angular.js'></script>
<script src='https://ajax.googleapis.com/ajax/libs/angularjs/1.6.7/angular-animate.min.js'></script>
<script src='https://ajax.googleapis.com/ajax/libs/angularjs/1.6.7/angular-route.min.js'></script>
<script src='https://ajax.googleapis.com/ajax/libs/angularjs/1.6.7/angular-aria.min.js'></script>
<script src='https://ajax.googleapis.com/ajax/libs/angularjs/1.6.7/angular-messages.min.js'></script>
<script src='https://s3-us-west-2.amazonaws.com/s.cdpn.io/t-114/svg-assets-cache.js'></script>
<script src='https://cdn.gitcdn.link/cdn/angular/bower-material/v1.1.8/angular-material.js'></script>
<script src="js/index.js"></script>
</body>
</html>