-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
92 lines (74 loc) · 3.72 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
86
87
88
89
90
91
92
---
is_index: true
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="An easy way to read the news — even if your name's not Betty.">
<meta name="author" content="">
<link rel="icon" href="/favicon.ico">
<title>News for Betty</title>
<!-- Bootstrap core CSS -->
<link href="./css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap theme -->
<link href="./css/bootstrap-theme.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="./css/newsforbetty.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<meta name="msapplication-TileImage" content="img/icon_144.png">
<meta name="msapplication-TileColor" content="#ffffff">
<link rel="apple-touch-icon" href="img/icon_144.png" sizes="144x144">
<link rel="apple-touch-icon-precomposed" href="img/icon_144.png" sizes="144x144">
<link rel="shortcut icon" href="img/icon_48.png">
<link rel="icon" href="img/icon_48.png">
</head>
<body role="document" class="fontMed">
<div class="skip-link">
<a class="sr-only btn btn-primary" href="#main">Skip to Main Content</a>
</div>
<!-- Fixed navbar -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<a class="navbar-brand logo-large" href="./"><picture>
<source type="image/svg+xml" srcset="img/logo.svg">
<img src="img/logo.png" alt="News for Betty">
</picture></a>
<a class="navbar-brand logo-small" href="./"><picture>
<source type="image/svg+xml" srcset="img/icon.svg">
<img src="img/icon_64.png" alt="News for Betty">
</picture></a>
<ul class="nav navbar-nav navbar-right">
<li><button type="button" class="btn btn-default btn-lg glyphicon glyphicon-minus-sign" aria-label="Decrease font size" id="fontDecrease"><span class="sr-only">Decrease font size</span></button></li>
<li><img src="img/font.png" alt="Font controls"></li>
<li><button type="button" class="btn btn-default btn-lg glyphicon glyphicon-plus-sign" aria-label="Increase font size" id="fontIncrease"><span class="sr-only">Increase font size</span></button></li>
<li><button type="button" class="btn btn-default btn-lg glyphicon glyphicon-adjust" aria-label="Change contrast" id="toggleContrast"><span class="sr-only">Toggle high contrast mode</span></button></li>
</ul>
</div>
</nav>
<div id="main" class="container theme-showcase" role="main">
<div class="page-header">
<span id="greeting"></span> Which news source?
</div>
<div id="sources" aria-live="polite"></div>
<hr>
<div id="categories" aria-live="polite"></div>
<div id="news" aria-live="polite"></div>
</div> <!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="./js/jquery-1.11.2.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script src="./js/newsforbetty_sources.js"></script>
<script src="./js/newsforbetty.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="./js/ie10-viewport-bug-workaround.js"></script>
</body>
</html>