Gregory Ballantine
be030532ea
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
55 lines
1.3 KiB
Twig
55 lines
1.3 KiB
Twig
{% extends 'layout.twig' %}
|
|
|
|
{% block scripts %}
|
|
<script src="./js/cpu.js" charset="utf-8"></script>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<header class="row">
|
|
<div class="columns twelve u-text-center">
|
|
<h1>Sentry CPU Info</h1>
|
|
</div>
|
|
</header>
|
|
|
|
<section class="row">
|
|
<article class="columns eight">
|
|
<h5>CPU Model: <span id="cpuInfo">Random CPU</span></h5>
|
|
<table class="hardware-info u-full-width">
|
|
<tbody>
|
|
<tr>
|
|
<td>Physical cores</td>
|
|
<td><span id="cpuCores">2</span> cores</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Logical threads</td>
|
|
<td><span id="cpuThreads">4</span> threads</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Base clock</td>
|
|
<td><span id="cpuClockBase">2.0</span>Ghz</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Boost clock</td>
|
|
<td><span id="cpuClockBoost">2.0</span>Ghz</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<p>CPU temperature: <span id="cpuTemp">12</span>°C</p>
|
|
</article>
|
|
|
|
<article class="columns four">
|
|
<div id="cpuTempDisplay" class="tempGauge">
|
|
<div class="tempGaugeFill"></div>
|
|
</div>
|
|
</article>
|
|
</section>
|
|
|
|
<section class="row">
|
|
<div class="columns twelve">
|
|
<a href="index.html">Back</a>
|
|
</div>
|
|
</section>
|
|
|
|
{% endblock %}
|