-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtemplates_info.html
86 lines (80 loc) · 2.53 KB
/
templates_info.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link href="style.css" rel="stylesheet" type="text/css"/>
<title>
Templates
</title>
</head>
<body>
<h1>
Templates
</h1>
<p>
This is intended as a very minimal guide to templates
<br>
Here are examples we feel will be most useful to you in our
classes and projects:
</p>
<ul>
<li>
<a href="https://github.com/gcallah/utils/blob/master/templates/HWTemplate.txt">
Here
</a>
is an example of a script meant for course
creation that works with
<a href="https://github.com/gcallah/utils/blob/master/gen_course_struct.awk">
this program
</a>
to generate ptml files for a new course, as well as
<a href="https://github.com/gcallah/utils/blob/master/templates/template.ptml">
this program
</a>
</li>
<li>
<a href="https://github.com/gcallah/utils/blob/master/test_data/render_md_inp.txt">
Here
</a>
is what you need to access a flask server from within
docker container
</li>
<li>
<a href="UsingQuizSystem.html">
Here
</a>
you will find information on
using the quiz system
which can work with
<a href="LectureTempl.html">
this template
</a>
as well as many other functionalities
</li>
<li>
<a href="spell_checker.html">
Here
</a>
is the spell checker tool
reference guide
</li>
<li>
<a href="automating_web_site.html">
Here
</a>
is a how to for automating
website construction
</li>
<li>
<a href="EmbeddedPythonConsoles.html">
Here
</a>
are the steps for embedding
a python console
for one of our
courses or perhaps
future uses
</li>
</ul>
</body>
</html>