-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
55 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,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> | ||
|
||
<ul> | ||
<li><a href="sample-problems/categories.html">Sample Problems by Categories</a></li> | ||
<li><a href="sample-problems/subjects.html">Sample Problems by Subject Areas</a></li> | ||
<li><a href="sample-problems/techniques.html">Sample Problems by Problem Techniques</a></li> | ||
<li><a href="pod/webwork2/index.html">Index of webwork2 pod</a></li> | ||
<li><a href="pod/pg/index.html">Index of pg pod</a></li> | ||
</ul> | ||
<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> |