-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
48 lines (44 loc) · 2.17 KB
/
index.php
File metadata and controls
48 lines (44 loc) · 2.17 KB
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
<!DOCTYPE html>
<?php
require ('includes/head.php');
require ('lib.php');
?>
<body role="document">
<div class="main-container indexpage">
<header class="page-title">
<img src="images/logo.png" alt="Logo" title="Logo">
<h1>Moodle 2 ToolGuide and Tool Selector</h1>
</header>
<div class="main-content">
<div class="row clearfix flex-container">
<div class="panel panel-success flex-item">
<a href="toolguide.php" alt="Link to ToolGuide">
<div class="panel-heading">
<h3><i class="fa fa-map-o"></i>Tool Guide</h3>
</div>
</a>
<div class="panel-body">
<h4>View the guide as an interactive online grid<br>Click each tool title for additional information about that tool</h4>
</div>
</div>
<div class="panel panel-success flex-item">
<a href="toolselector/selector.php" alt="Link to ToolSelector">
<div class="panel-heading">
<h3><i class="fa fa-map-signs"></i>Tool Selector</h3>
</div>
</a>
<div class="panel-body">
<h4>Choose an appropriate tool based on a decision tree of what you want to achieve</h4>
</div>
</div>
</div><!-- Row -->
</div><!-- Main-Content -->
<div class="footer">
<div class="well credits">
<h3>Adapted by Richard Oelmann (@Oelmann_Richard) from the original <a href="http://www.cats-pyjamas.net/moodle-tool-guide/ alt="Moodle Tool Guide">Moodle Tool Guide</a> by Joyce Seitzinger (@catspyjamasnz) and the <a href="http://www.somerandomthoughts.com/blog/2012/03/15/a-moodle-2-version-of-the-moodle-tool-guide/" alt="Moodle2 Tool Guide">Moodle 2 Tool Guide</a> by Gavin Henrick (@ghenrick)</h3>
<h3>The Moodle Tool Selector is based on the concepts and the overview of the <a href="https://dl.dropboxusercontent.com/u/423876/Moodle/Index.html" alt="Tool selector link">Tool Selection Decision Tree</a> by Alison Ruth</h3>
<p><img src="images/by-nc-sa.png" alt="Creative Commons licence - by, nc, sa"> As defined in the original, this work is released under a <a href="https://creativecommons.org/licenses/">Creative Commons, with attribution, non-commercial, share-alike licence.</a></p>
</div>
</div><!-- footer -->
</div><!-- Main-Container -->
<?php require ('includes/foot.php'); ?>