cockpit: page section wrapper for entrypoint

Wrap the AppCockpit entrypoint in `Page` & `PageSection` wrappers so
that it is more consistent with other cockpit elements.
This commit is contained in:
Gianluca Zuccarelli 2025-06-05 10:49:55 +00:00 committed by Simon Steinbeiß
parent 40fe892dbf
commit e7bf1d3540
3 changed files with 34 additions and 10 deletions

View file

@ -1,15 +1,15 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en-us" class="layout-pf pf-m-redhat-font">
<head>
<meta charset="utf-8">
<head>
<meta charset="utf-8" />
<title>Image-Builder</title>
<!-- js dependencies -->
<script type="text/javascript" src="../base1/cockpit.js"></script>
<link href="main.css" rel="stylesheet">
</head>
<body>
<div id="main"></div>
<script defer src="main.js"></script>
</body>
<script defer src="main.js"></script>
<link href="main.css" rel="stylesheet" />
</head>
<body>
<div class="ct-page-fill" id="main"></div>
</body>
</html>