Skip to content

Commit

Permalink
Update schedule.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Me6me82 authored Nov 15, 2024
1 parent 9fb8cb4 commit fc28504
Showing 1 changed file with 75 additions and 18 deletions.
93 changes: 75 additions & 18 deletions _includes/swc/schedule.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,75 @@
<div class="row">
<div class="col-md-6">
<h3>Plan for the day</h3>
<table class="table table-striped">
<tr> <td>Before</td> <td><a href="{{ site.pre_survey }}{{ site.github.project_title }}" target="_blank" rel="noopener noreferrer">Pre-workshop survey</a> </td> </tr>
<tr> <td>09:00</td> <td><a href="https://swcarpentry.github.io/shell-novice/02-filedir.html">Intro and Navigating Files and Directories</a> </td> </tr>
<tr> <td>10:30</td> <td>Morning break</td> </tr>
<tr> <td>11:00</td> <td><a href="https://swcarpentry.github.io/shell-novice/04-pipefilter.html">Pipes and Filters</a> </td> </tr>
<tr> <td>12:00</td> <td>Lunch break</td> </tr>
<tr> <td>13:00</td> <td><a href="https://swcarpentry.github.io/shell-novice/05-loop.html">Loops</a></td></tr>
<tr> <td>14:30</td> <td>Afternoon break</td> </tr>
<tr> <td>15:00</td> <td><a href="https://swcarpentry.github.io/shell-novice/06-script.html">Shell Scripts </a> and <a href="https://swcarpentry.github.io/shell-novice/07-find.html">Finding Things</a> </td> </tr>
<tr> <td>16:00</td> <td>Wrap-up</td> </tr>
<tr> <td>16:30</td> <td><a href="{{ site.post_survey }}{{ site.github.project_title }}" target="_blank" rel="noopener noreferrer">Post-workshop Survey</a></td> </tr>
<tr> <td>16:40</td> <td>END</td> </tr>
</table>
</div>
</div>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Workshop Plan</title>
<!-- Assuming you're using Bootstrap for styling, include Bootstrap's CSS here -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="row">
<div class="col-md-6">
<h3>Plan for the day</h3>
<table class="table table-striped">
<thead>
<tr>
<th>Time</th>
<th>Activity</th>
</tr>
</thead>
<tbody>
<tr>
<td>Before</td>
<td><a href="{{ site.pre_survey }}{{ site.github.project_title }}" target="_blank" rel="noopener noreferrer">Pre-workshop survey</a></td>
</tr>
<tr>
<td>09:00</td>
<td><a href="https://swcarpentry.github.io/shell-novice/02-filedir.html">Intro and Navigating Files and Directories</a></td>
</tr>
<tr>
<td>10:30</td>
<td>Morning break</td>
</tr>
<tr>
<td>11:00</td>
<td><a href="https://swcarpentry.github.io/shell-novice/04-pipefilter.html">Pipes and Filters</a></td>
</tr>
<tr>
<td>12:00</td>
<td>Lunch break</td>
</tr>
<tr>
<td>13:00</td>
<td><a href="https://swcarpentry.github.io/shell-novice/05-loop.html">Loops</a></td>
</tr>
<tr>
<td>14:30</td>
<td>Afternoon break</td>
</tr>
<tr>
<td>15:00</td>
<td><a href="https://swcarpentry.github.io/shell-novice/06-script.html">Shell Scripts</a> and <a href="https://swcarpentry.github.io/shell-novice/07-find.html">Finding Things</a></td>
</tr>
<tr>
<td>16:00</td>
<td>Wrap-up</td>
</tr>
<tr>
<td>16:30</td>
<td><a href="{{ site.post_survey }}{{ site.github.project_title }}" target="_blank" rel="noopener noreferrer">Post-workshop Survey</a></td>
</tr>
<tr>
<td>16:40</td>
<td>END</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- Assuming you're using Bootstrap for styling, include Bootstrap's JS here -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>

0 comments on commit fc28504

Please sign in to comment.