pi-frame-server/templates/base.html
saji 67e425c946
Some checks failed
cargo_test_bench / Run Tests (push) Failing after 1m26s
cargo_test_bench / Run Benchmarks (push) Failing after 2m3s
wip: web ui
2024-08-04 16:22:29 -05:00

22 lines
524 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hello Bulma!</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/bulma.min.css">
</head>
<body>
<section class="section">
<div class="container">
<h1 class="title">
Hello World
</h1>
<p class="subtitle">
My first website with <strong>Bulma</strong>!
</p>
</div>
</section>
</body>
</html>