-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
59 lines (57 loc) · 2.15 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
<html>
<head>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
margin-top: 25px;
}
</style>
</head>
<body>
<div class="container">
<h2>Documentation Home for PG</h2>
<p>This is the documentation home for PG, the problem authoring language for WeBWorK.
The links below include POD (Plain Old Documentation), explaining how to use
PG macros and related modules as well as sample problems.
</p>
<div class="list-group">
<a href="sample-problems/categories.html" class="list-group-item list-group-item-action" aria-current="true">
<div class="w-100">
<span class="h4">Sample Problems by Categories</span>
</div>
<p class="mb-1">A list of most sample problems by category.</p>
</a>
<a href="sample-problems/subjects.html" class="list-group-item list-group-item-action" aria-current="true">
<div class="w-100">
<span class="h4">Sample Problems by Subject Area</span>
</div>
<p class="mb-1">A list of most sample problems by subject area.</p>
</a>
<a href="sample-problems/techniques.html" class="list-group-item list-group-item-action" aria-current="true">
<div class="w-100">
<span class="h4">Problem Techniques</span>
</div>
<p class="mb-1">A list of most sample problems by problem technique.</p>
</a>
<a href="sample-problems/macros.html" class="list-group-item list-group-item-action" aria-current="true">
<div class="w-100">
<span class="h4">Sample Problems by Macro</span>
</div>
<p class="mb-1">For many macros, this lists all sample problems used by the macro.</p>
</a>
<a href="pod/webwork2/index.html" class="list-group-item list-group-item-action" aria-current="true">
<div class="w-100">
<span class="h4">WeBWorK POD</span>
</div>
<p class="mb-1">A list all WeBWorK Plain Old Documenation.</p>
</a>
<a href="pod/pg/index.html" class="list-group-item list-group-item-action" aria-current="true">
<div class="w-100">
<span class="h4">PG POD</span>
</div>
<p class="mb-1">A list all PG Plain Old Documenation.</p>
</a>
</div>
</div>
</body>
</html>