Skip to content

Commit

Permalink
change zoom in <td>s
Browse files Browse the repository at this point in the history
  • Loading branch information
kshannon authored Apr 4, 2024
1 parent aa47149 commit 7685e9f
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions pages/office-hours.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,11 @@ Office hours are a great place to personally interact. Beyond projects and cours
<td> {{ variables.instructor.name }} </td>
<td> {{ oh.day }} {{ oh.time }} </td>
<td> {{ oh.location }} </td>
<td> <a href='{{ oh.zoom_link }}' target="_blank" rel="noopener">Join &#x2197;</a> </td>
{% if oh.zoom_link %}
<td> <a href="{{ oh.zoom_link }}" target="_blank" rel="noopener">Join &#x2197;</a> </td>
{% else %}
<td>In Person</td>
{% endif %}
</tr>
{% endfor %}
{% for row in variables.teaching_assistants %}
Expand All @@ -50,7 +54,11 @@ Office hours are a great place to personally interact. Beyond projects and cours
<td> {{ row.name }} </td>
<td> {{ oh.day }} {{ oh.time }} </td>
<td> {{ oh.location }} </td>
<td> <a href='{{ oh.zoom_link }}' target="_blank" rel="noopener">Join &#x2197;</a> </td>
{% if oh.zoom_link %}
<td> <a href="{{ oh.zoom_link }}" target="_blank" rel="noopener">Join &#x2197;</a> </td>
{% else %}
<td>In Person</td>
{% endif %}
</tr>
{% endfor %}
{% endfor %}
Expand All @@ -60,7 +68,11 @@ Office hours are a great place to personally interact. Beyond projects and cours
<td> {{ row.name }} </td>
<td> {{ oh.day }} {{ oh.time }} </td>
<td> {{ oh.location }} </td>
<td> <a href='{{ oh.zoom_link }}' target="_blank" rel="noopener">Join &#x2197;</a> </td>
{% if oh.zoom_link %}
<td> <a href="{{ oh.zoom_link }}" target="_blank" rel="noopener">Join &#x2197;</a> </td>
{% else %}
<td>In Person</td>
{% endif %}
</tr>
{% endfor %}
{% endfor %}
Expand Down

0 comments on commit 7685e9f

Please sign in to comment.