pull/2/head
Oliver Kennedy 2024-01-25 20:56:39 -05:00
parent 14d74fd70c
commit 05ef7e4e91
Signed by: okennedy
GPG Key ID: 3E5F9B3ABD3FDB60
2 changed files with 17 additions and 1 deletions

View File

@ -22,6 +22,8 @@ resources:
schedule: schedule:
- topic: Introduction - topic: Introduction
detail: Course logistics and high level overview. detail: Course logistics and high level overview.
docs:
notes: slide/01-intro.pdf
- topic: Rust Basics - topic: Rust Basics
detail: How Rust differs from Java, and how to work with the borrow checker. detail: How Rust differs from Java, and how to work with the borrow checker.
- topic: "Background: Data Structures and SQL" - topic: "Background: Data Structures and SQL"
@ -203,6 +205,10 @@ p.callout {
{ {
background-color: #eee; background-color: #eee;
} }
.docs
{
font-size: 90%;
}
</style> </style>
@ -285,7 +291,17 @@ p.callout {
<h3>Topics Covered</h3> <h3>Topics Covered</h3>
<dl class="details"> <dl class="details">
<% schedule.each do |topic| %> <% schedule.each do |topic| %>
<dt><%=topic["topic"]%></dt> <dt><%=topic["topic"]%>
<% if topic.include? "docs" %>
<span class="docs">
<% sep = "" %>
[<% topic["docs"].each do |label, url| %>
<%= sep %> <a href="<%=url%>"><%=label%></a>
<% sep = "|" %>
<% end %>]
</span>
<% end %>
</dt>
<dd><%=topic["detail"]%></dd> <dd><%=topic["detail"]%></dd>
<% end %> <% end %>
</dl> </dl>

Binary file not shown.