forked from StudioInfinity/dyna3

This introduces a dependency on the Charming crate, which we use to plot the loss history, and the ECharts JavaScript library, which Charming depends on. Now that there's more than one canvas on the page, we have to pick out the display by ID rather than by element type in our style sheet.
17 lines
652 B
HTML
17 lines
652 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>dyna3</title>
|
|
<link data-trunk rel="css" href="main.css"/>
|
|
<link href="https://fonts.bunny.net/css?family=fira-sans:ital,wght@0,400;1,400&display=swap" rel="stylesheet">
|
|
<link href="https://fonts.bunny.net/css?family=noto-emoji:wght@400&text=%f0%9f%94%97%e2%9a%a0&display=swap" rel="stylesheet">
|
|
|
|
<!--
|
|
the Charming visualization crate, which we use to show engine diagnostics,
|
|
depends the ECharts JavaScript package
|
|
-->
|
|
<script src="https://cdn.jsdelivr.net/npm/echarts@5.5.1/dist/echarts.min.js"></script>
|
|
</head>
|
|
<body></body>
|
|
</html>
|