forked from InfoSeeking/Coagmento
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideos.php
70 lines (55 loc) · 2.61 KB
/
videos.php
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
<?php
require_once("header.php");
?>
<!-- Content region -->
<div id="main-content">
<div class="row-fluid wrapper">
<div class="span12">
<h1 class="page-title">Video Tutorials</h1>
</div>
</div>
<div class="row-fluid wrapper">
<!-- Main content -->
<div id="content-region" class="span12">
<div id="heroes-block" class="block">
<div class="row-fluid">
<div class="span6">
<div class="video">
<iframe src="http://www.youtube.com/embed/QQoFPA_rnbM?rel=0"></iframe>
</div>
<h2>Introducing Coagmento</h2>
<p>See what Coagmento is, and how it can provide you a seamless solution for your online information seeking projects - right inside your browser</p>
</div>
<div class="span6">
<div class="video">
<iframe src="http://www.youtube.com/embed/IkGcaASp4SA?rel=0"></iframe>
</div>
<h2>Installing Coagmento on Firefox</h2>
<p>Learn how easy it is to download, install, and start using Coagmento plugin for Firefox.</p>
</div>
</div> <!-- /row-fluid -->
<div class="row-fluid">
<div class="span6">
<div class="video">
<iframe src="http://www.youtube.com/embed/N4fTIbOZvhI?rel=0"></iframe>
</div>
<h2>Using Coagmento for Personal Projects</h2>
<p>See how Coagmento could help you work through a project that spans multiple sessions, and involves exploring, collecting, and compiling online information.</p>
</div>
<div class="span6">
<div class="video">
<iframe src="http://www.youtube.com/embed/MxMDfhijV_0?rel=0"></iframe>
</div>
<h2>Using Coagmento for Collaborative Projects</h2>
<p>See how Coagmento could help you work through a project that involves multiple people working through several sessions. The collaborators could be working from anywhere and at the same or different time.</p>
</div>
</div> <!-- /row-fluid -->
</div> <!-- /heroes-block -->
</div> <!-- /content-region -->
<!-- End of the main content -->
</div> <!-- /wrapper -->
</div> <!-- /main-content -->
<!-- End of Content region -->
<?php
require_once("footer.php");
?>