-
Notifications
You must be signed in to change notification settings - Fork 0
/
profesor.html
189 lines (153 loc) · 4.54 KB
/
profesor.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.ico">
<title>UTNianos 2.0</title>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Bootstrap core CSS -->
<link href="css/bootstrap/bootstrap.min.css" rel="stylesheet">
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href="css/bootstrap/ie10-viewport-bug-workaround.css" rel="stylesheet">
<link href="css/cover.css" rel="stylesheet">
<link href="alloy-editor/assets/alloy-editor-ocean.css" rel="stylesheet">
<link href="css/profesor.css" rel="stylesheet">
<link href="css/fixes.css" rel="stylesheet">
<!-- Jquery -->
<script src="js/jquery.js"></script>
<!-- Alloy editor -->
<script src="alloy-editor/alloy-editor-all.js"></script>
<!-- Bootstrap JS -->
<script src="js/bootstrap/bootstrap.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="js/bootstrap/ie10-viewport-bug-workaround.js"></script>
<script src="js/editorConfig.js"></script>
<script src="js/profesor.js"></script>
</head>
<body>
<div class="site-wrapper">
<div class="site-wrapper-inner">
<div class="cover-container">
<div class="masthead clearfix">
<div class="inner">
<h3 class="masthead-brand">UTNianos 2.0</h3>
<nav>
<ul class="nav masthead-nav">
<li>
<a href="index.html">Inicio</a>
</li>
<li class="active">
<a href="profesor.html">Profesores</a>
</li>
<li>
<a href="materia.html">Materia</a>
</li>
<li>
<a href="seguidor.html">Seguidor</a>
</li>
</ul>
</nav>
</div>
</div>
<div class="professor-profile">
<span>
<img src="profile.jpg" id="professor-image" alt="foto" class="img-circle" />
<span class="professor-name">Adriano Filgueira</span>
</span>
<!--<span id="puntaje" class="badge">40/10</span>-->
</div>
<hr class="section-divider-sm" />
<h2 style="text-align:center;">Materias</h2>
<table class="table" id="table-materias">
<thead>
<tr>
<td>#</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="materia.html">Sistemas Operativos</a>
</td>
</tr>
<tr>
<td>
<a href="materia.html">
Meditación budista
</a>
</td>
</tr>
<tr>
<td>
<a href="javascript:void(0)">
Tai Chi
</a>
</td>
</tr>
<tr>
<td>
<a href="javascript:void(0)">
Análisis matemático para la tercera edad.
</a>
</td>
</tr>
</tbody>
</table>
<br />
<hr class="section-divider" />
<div>
<h1 style="margin-bottom:28px;text-align:center;">
Comentarios de los alumnos
</h1>
</div>
<div id="comments">
<div class="comment">
<span class="comment-user">Rulo</span>
<p class="comment-text">
Adro es un...profesor. Se para delante de la clase
y dice lo que sabe. Toma y corrije parciales.
</p>
</div>
<hr class="section-divider-sm" />
<div class="comment">
<span class="comment-user">Jarry</span>
<p class="comment-text">
Completa sus tareas con eficacia.
</p>
</div>
<hr class="section-divider-sm" />
<div class="comment">
<span class="comment-user">Gonza</span>
<p class="comment-text">
Estuve en la clase de Adro.Me pone muy triste que...<strong>NO
LO PODAMOS TENER MAS TIEMPO. TODOS AMAMOS A ADRIANO Y SU GLORIOSO
REIGMEN.</strong>
</p>
</div>
</div>
<hr class="section-divider" />
<div>
<div>
<h1 style="margin-bottom:54px;text-align:center;">
Comentar
</h1>
</div>
<div id="comment-box-container" >
<div id="comment-editor" contenteditable="true"></div>
<span class="btn btn-primary" id="comment-button">Opinar</span>
</div>
<br />
</div>
</div>
</div>
</div>
</body>
</html>