-
Notifications
You must be signed in to change notification settings - Fork 0
/
video-bug.html
90 lines (73 loc) · 2.91 KB
/
video-bug.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head>
<title>GNOME 3.0</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="author" content="Andreas Nilsson"/>
<meta name="keywords" content="gnome3" />
<meta name="description" content="gnome3.org" />
<meta name="robots" content="index, follow" />
<link rel="stylesheet" href="style/gnome3.css" type="TEXT/CSS" media="screen"/>
<script type="text/javascript" src="jquery.js"></script>
<script language="javascript" src="jquery.tweet.js" type="text/javascript"></script>
<script src="jquery.zflickrfeed.min.js" type="text/javascript"></script>
<script type='text/javascript'>
jQuery(document).ready(function($) {
$(".tweet").tweet({
join_text: "auto",
username: "seaofclouds",
avatar_size: 48,
count: 3,
auto_join_text_default: "we said,",
auto_join_text_ed: "we",
auto_join_text_ing: "we were",
auto_join_text_reply: "we replied",
auto_join_text_url: "we were checking out",
loading_text: "loading tweets..."
});
$("#query").tweet({
avatar_size: 24,
count: 7,
query: "gnome",
loading_text: "searching twitter..."
});
//here is the flickr shit
$('#flickr').flickrfeed('','gnome shell', {
imagesize: "thumbnail",
limit: 15,
title: false,
});
// and flickr ends here
$("#empty").tweet({
avatar_size: 32,
count: 4,
query: "cieR8oog",
loading_text: "searching twitter..."
}).bind("empty", function() { $(this).append("No matching tweets found"); });
})
</script>
</head>
<body>
<div id="wrapper">
<div id="header">
<img src="images/gnome3-logo.png" alt="GNOME 3 - Made of Easy">
<span class="release-date">Sept 29th 2009 <img src="images/delicious.png"><img src="images/email.png"><img src="images/facebook.png"><img src="images/identica.png"><img src="images/twitter.png"></span>
</div>
<div id="divider"> </div>
<div id="sidebar">
<ul id="navigation">
<li class="current-page"><a href="index.html">home</a></li>
<li><a href="applications.html">applications</a></li>
<li><a href="developers.html">developers</a></li>
<li><a href="a11y.html">accessibility</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
<h4>Microblog feed</h4>
<div id="query"></div>
</div> <!-- end of sidebar -->
<div id="maincolumn">
<video src="videos/bug.ogv" autoplay controls poster="images/video.png" width="534px" height="427px">Your browser does not support the <code>video</code> element.</video>
<div id="flickr"></div>
<div id="site-info">© GNOME Foundation 2010, all content on this site is CCBYSA, Hosted by Red Hat</div>
</div>
</body>
</html>