Skip to content

Commit

Permalink
update upcoming events
Browse files Browse the repository at this point in the history
  • Loading branch information
plmrry committed Feb 20, 2024
1 parent 1b01079 commit 4fc7a0f
Showing 1 changed file with 13 additions and 20 deletions.
33 changes: 13 additions & 20 deletions build-index-page.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,12 @@ const head = `<head>

const news = `<section id="news">
<header class="major">
<div class="row">
<div class="col-3 col-12-small">
<small>Thursday</small>
<h1 style="font-size: 1.5rem"><time datetime="2024-02-15T14:00">February 15</time></h1>
<small>2:00 P.M. – 4:00 P.M.</small>
<div><small>9th Floor Conference Room</small></div>
</div>
<div class="col-9 col-12-small">
<h2>Programming Language Interoperability</h2>
<p>In this CCQ-hosted Sciware we will talk about interfacing between different programming languages, with a particular focus on interoperability between C++, Python, Julia and C. We will also showcase a CCQ-developed tool which generates C++ bindings automatically.</p>
</div>
</div>
<div class="row">
<div class="col-3 col-12-small">
<small>Thursday – Friday</small>
<h1 style="font-size: 1.5rem"><time datetime="2024-02-29">February 29 – March 1</time></h1>
<small>10:00 A.M. – 4:00 P.M.</small>
<div><small>7th Floor Classroom</small></div>
<small>9:45 A.M. – 4:00 P.M.</small>
<div><small>Location TBD</small></div>
</div>
<div class="col-9 col-12-small">
<h2>NVIDIA ML Training</h2>
Expand Down Expand Up @@ -129,6 +117,15 @@ const past = `<section id="past">
</ul>
</section>`;

const scripts = `
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
`;

const template = `<!DOCTYPE html>
<html>
${head}
Expand Down Expand Up @@ -225,12 +222,8 @@ const template = `<!DOCTYPE html>
</footer>
</main>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
${scripts}
</body>
</html>
`;
Expand Down

0 comments on commit 4fc7a0f

Please sign in to comment.