blt/templates/hardware/view.tmpl

20 lines
319 B
Cheetah
Raw Normal View History

2023-12-02 22:37:46 -05:00
{{ template "header" . }}
<div class="row">
<h2>{{ .hardware.Name }}</h2>
<p>{{ .hardware.Type }}</p>
<hr>
2024-05-29 08:42:53 -04:00
<h4>Latest Benchmark Results:</h4>
2024-05-29 08:37:51 -04:00
<p>There are currently no benchmarks recorded using this hardware component.</p>
<hr>
2023-12-02 22:37:46 -05:00
<p><a href="/hardware">Back</a></p>
</div>
{{ template "footer" . }}