-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNews.aspx
138 lines (125 loc) · 6.13 KB
/
News.aspx
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="LifeBlue_Assessment._Default" %>
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
<script src="Scripts/jquery-1.10.2.min.js"></script>
<script>
$(document).ready(function () {
$("#r").click(function () {
$('#past').hide();
$('#recent').show();
});
$("#m").click(function () {
$('#recent').hide();
$('#past').show();
});
});
</script>
<div class="jumbotron">
<h1>LIFEBLUE</h1>
<p class="lead">
YOU CAN'T DO GREAT WORK UNLESS YOU WORK WITH GREAT PEOPLE
</p>
<p><a href="http://www.lifeblue.com/inside-view.html" class="btn btn-primary btn-lg">Learn more »</a></p>
</div>
<div class="row">
<div class="col-sm-4 col-md-5">
<h3 style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color:cornsilk;">Archives</h3>
<div>
<button type="button" class="btn btn-info" id="r">Recent</button>
<button type="button" class="btn btn-info" id="m">Past</button>
</div>
<div id = "recent" style="display:none;">
<ul style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;color:cornsilk;">
<p>
<li>7 Ways Writing Improves Creativity</li>
<li>Poka-Yoke in User Interface Design</li>
<li>Ideas to Keep in Mind When Designing User Interfaces</li>
</p>
</ul>
</div>
<div id="past" style="display:none;">
<p>
<ul style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;color:cornsilk;">
<li> 50 Restaurant Websites for Inspiration </li>
<li> The New Smashing Mystery Riddle: Have You Figured It Out Yet?</li>
<li> Extending Advanced Custom Fields With Your Own Controls</li>
</ul>
</p>
</div>
<h3 style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;color:cornsilk;">Tabbed</h3>
<script>
$(document).ready(function(){
$(".nav-tabs a").click(function () {
$(this).tab('show');
}); });
</script>
<div class="container">
<ul class="nav nav-tabs">
<li class="active"><a data-toggle ="tab" href="#home">Most Viewed</a></li>
<li><a data-toggle ="tab" href="#menu1">Most Commented</a></li>
<li><a data-toggle ="tab" href="#menu2">Most SharedClicking</a></li>
</ul>
<div class="tab-content">
<div id="home" class="tab-pane fade in active" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;color:cornsilk;">
<h3>Most Viewed</h3>
<ul>
<li><a href="#">Featured News</a></li>
<li><a href="#">Top Headlines</a></li>
<li><a href="#">Latest blogs</a></li>
</ul>
</div>
<div id="menu1" class="tab-pane fade" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;color:cornsilk;">
<h3>Most Commented</h3>
<ul>
<li><a href="#">Articles Most Reviewed</a></li>
<li><a href="#">Celebrities Comments</a></li>
</ul>
</div>
<div id="menu2" class="tab-pane fade" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;color:cornsilk;">
<h3>Most SharedClicking</h3>
<ul>
<li><a href="#">Viral Videos</a></li>
<li><a href="#">Facebook Shares</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-8 col-md-7" style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;color:cornsilk;">
<h2>Articles</h2>
<p style="font-size:large">
<b>Zero UI — The Future of Interfaces</b>
</p>
<h5>Aug 28, 2015</h5>
<p>
Zero UI is the concept of having a more seamless interaction with technology.
</p>
<p>
<a class="btn btn-default" href="http://sixrevisions.com/user-interface/zero-ui/">Learn more »</a>
</p>
<p style="font-size:large">
<b>What You Need To Know About Anticipatory Design</b>
</p>
<h5>September 10, 2015</h5>
<p>
The word anticipatory comes from the Latin anticipare, which means “taking care of ahead of time.”
We normally associate it with something that happens, is performed or felt in anticipation of something.
</p>
<p>
<a class="btn btn-default" href="http://www.smashingmagazine.com/2015/09/anticipatory-design/">Learn more »</a>
</p>
<p style="font-size:large">
<b>A Guide To Building SVG Maps From Natural Earth Data</b>
</p>
<h5>September 9, 2015</h5>
<p>
Interactive maps are a fantastic way to present geographic data to your visitors.
Libraries like Google Maps and Open Street Maps are a popular choice to do this and they excel
at visualizing street-level data. However, for small-scale maps, SVG maps are often a better option.
They are lightweight, fully customizable and are not encumbered by any licensing restrictions.
</p>
<p>
<a class="btn btn-default" href="http://www.smashingmagazine.com/2015/09/making-svg-maps-from-natural-earth-data/">Learn more »</a>
</p>
</div>
</div>
</asp:Content>