-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
210 lines (177 loc) · 7.76 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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>View Source</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<link rel="stylesheet" href="_/css/yellow.css" />
<link rel="stylesheet" href="_/css/structure.css" />
<script src="_/js/jquery.js"></script>
<script src="_/js/jquery.mobile.js"></script>
<script src="_/js/myscript.js"></script>
<link rel="stylesheet" href="_/css/mystyles.css" />
</head>
<body>
<!--Page: Home-->
<div id="home" data-role ="page" data-theme="a" data-title="View Source: Home">
<div data-role="header" data-position="fixed" data-id="vs_header">
</div><!--Header-->
<div data-role="content">
<img src="images/viewsourcelogo.png" alt="View Source Logo" />
</div>
<div data-role="controlgroup">
<a href="#blog" data-role="button" data-icon="vs_blog">Blog</a>
<a href="#videos" data-role="button" data-icon="vs_videos">Videos</a>
<a href="#photos" data-role="button" data-icon="vs_photos">Photos</a>
<a href="#tweets" data-role="button" data-icon="vs_tweets">Tweets</a>
</div><!--Links-->
</div><!--Page-->
<!--Page: Blog-->
<div id="blog" data-role ="page" data-theme="a" data-title="View Source: Blog">
<div data-role="header" data-theme="a" data-position="fixed" data-id="vs_header">
<h1>Blog</h1>
<a href="#home" data-icon="home" data-iconpos="notext">Home</a>
<a href="#info" data-icon="info" data-iconpos="notext" data-rel="dialog">Info</a>
</div><!--Header-->
<div data-theme="a" data-role="content"><!-- Sample Content -->
<div data-role="collapsible-set">
<div data-role="collapsible">
<h3>A JSON Tutorial. Getting started with JSON</h3>
<p>Getting started with JavaScript Object Notation. A JSON tutorial for Absolute Beginners</p>
</div>
<div data-role="collapsible">
<h3>WordPress Newbie Tip...control length of posts on homepage</h3>
<p>If your WordPress site is set up to show the full length articles</p>
</div>
<div data-role="collapsible">
<h3>Tips for finding a great domain name</h3>
<p>Workflow tips and tricks for Adobe In-Design</p>
</div>
<div data-role="collapsible">
<h3>Advantages of Creating Subdomain Shortcuts</h3>
<p>Creating sub-domains gives you the ability to create shortcuts</p>
</div>
<div data-role="collapsible">
<h3>Creating a Photo Rotator with JQuery Cycle</h3>
<p>I love the JQuery tagline...write less, do more. </p>
</div><!--collapsible-->
</div><!--Accordion-->
</div><!--content-->
<div data-role="footer" data-theme="a" data-position="fixed" data-id="vs_footer">
<div data-role="navbar">
<ul>
<li><a href="#home" data-role="button" data-icon="home">Home</a></li>
<li><a href="#" data-role="button" data-icon="vs_blog">Blog</a></li>
<li><a href="#videos" data-role="button" data-icon="vs_videos">Videos</a></li>
<li><a href="#photos" data-role="button" data-icon="vs_photos">Photos</a></li>
<li><a href="#tweets" data-role="button" data-icon="vs_tweets">Tweets</a></li>
</ul>
</div><!--Navbar-->
</div><!--Footer-->
</div><!--Page-->
<!--Page: Videos-->
<div id="videos" data-role ="page" data-title="View Source: Videos">
<div data-role="header" data-position="fixed" data-id="vs_header">
<h1>Videos</h1>
<a href="#home" data-icon="home" data-iconpos="notext">Home</a>
<a href="#info" data-icon="info" data-iconpos="notext" data-rel="dialog">Info</a>
</div><!--Header-->
<div data-role="content">
<div class="ui-grid-a" id="videolist">
</div><!--grid-->
</div><!--content-->
<div data-role="footer" data-position="fixed" data-id="vs_footer">
<div data-role="navbar">
<ul>
<li><a href="#home" data-role="button" data-icon="home">Home</a></li>
<li><a href="#" data-role="button" data-icon="vs_blog">Blog</a></li>
<li><a href="#videos" data-role="button" data-icon="vs_videos">Videos</a></li>
<li><a href="#photos" data-role="button" data-icon="vs_photos">Photos</a></li>
<li><a href="#tweets" data-role="button" data-icon="vs_tweets">Tweets</a></li>
</ul>
</div><!--Navbar-->
</div><!--Footer-->
</div><!--Page-->
<div id="videoplayer" data-role="page">
<div data-role="header" data-position="fixed" data-theme="a">
<a href="#videos"
data-transition="fade"
data-icon="back"
data-iconpos="notext"
data-direction="reverse"
>Videos</a>
<h1>Videos</h1>
</div><!-- header -->
<div data-role="content">
<div id="myplayer"></div>
</div><!-- content -->
</div><!-- page -->
<!--Page: Photos-->
<div id="photos" data-role ="page" data-title="View Source: Photos">
<div data-role="header" data-position="fixed" data-id="vs_header">
<h1>Photos</h1>
<a href="#home" data-icon="home" data-iconpos="notext">Home</a>
<a href="#info" data-icon="info" data-iconpos="notext" data-rel="dialog">Info</a>
</div><!--Header-->
<div data-role-"content" data-theme="a">
<div class="ui-grid-c" id="photolist">
</div><!--grid-->
</div><!--content-->
<div data-role="footer" data-position="fixed" data-id="vs_footer">
<div data-role="navbar">
<ul>
<li><a href="#home" data-role="button" data-icon="home">Home</a></li>
<li><a href="#" data-role="button" data-icon="vs_blog">Blog</a></li>
<li><a href="#videos" data-role="button" data-icon="vs_videos">Videos</a></li>
<li><a href="#photos" data-role="button" data-icon="vs_photos">Photos</a></li>
<li><a href="#tweets" data-role="button" data-icon="vs_tweets">Tweets</a></li>
</ul>
</div><!--Navbar-->
</div><!--Footer-->
</div><!--Page-->
<div data-role="page" id="showphoto">
<div data-role="header" data-postition="fixed" data-theme="a">
<a href="#photos" data-transition="fade" data-icon="back" data-theme="a">Photos</a>
<h1>Photos</h1>
</div><!--header-->
<div data-role="content">
<div id="myphoto"></div>
</div><!--content-->
</div><!--page-->
<!--Page: Tweets-->
<div id="tweets" data-role ="page" data-title="View Source: Tweets">
<div data-role="header" data-position="fixed" data-id="vs_header">
<h1>Tweets</h1>
<a href="#home" data-icon="home" data-iconpos="notext">Home</a>
<a href="#info" data-icon="info" data-iconpos="notext" data-rel="dialog">Info</a>
</div><!--Header-->
<p>Tweets Page.</p>
<div data-role="footer" data-position="fixed" data-id="vs_footer">
<div data-role="navbar">
<ul>
<li><a href="#home" data-role="button" data-icon="home">Home</a></li>
<li><a href="#" data-role="button" data-icon="vs_blog">Blog</a></li>
<li><a href="#videos" data-role="button" data-icon="vs_videos">Videos</a></li>
<li><a href="#photos" data-role="button" data-icon="vs_photos">Photos</a></li>
<li><a href="#tweets" data-role="button" data-icon="vs_tweets">Tweets</a></li>
</ul>
</div><!--Navbar-->
</div><!--Footer-->
</div><!--Page-->
<div data-role="page" id="info" data-theme="a">
<div data-role="header">
<h1>About View Source</h1>
</div>
<div data-role="content">
<p>
View Source offers short projects on intermediate to advanced web design topics,
covering technologies such as HTML, PHP, jQuery, and CSS,
as well as content management solutions like WordPress and integration with Twitter, YouTube, and more.
</p>
<a href="#" data-role="button" data-theme="a" data-inline="true" data-rel="back">Cancel</a>
<a href="#home" data-role="button" data-theme="a" data-inline="true">Home</a>
</div>
</div>
<script src="http://gdata.youtube.com/feeds/users/orazzl3dazzl3/uploads?alt=json-in-script&max-results=30&callback=listVideos" type"text/javascript"></script>
<script src="http://api.flickr.com/services/feeds/photos_public.gne?id=73845487@N00&format=json&tags=viewsource" type="text/javascript"></script>
</html>