32 lines
760 B
Plaintext
32 lines
760 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Sample Website</title>
|
|
<link rel="stylesheet" type="text/css" href="css/main.css">
|
|
<link rel="icon" type="image/x-icon" href="img/favicon.ico">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<img src="img/LEGO.jpg" alt="Puppet" />
|
|
<div class="blurb">
|
|
<h1>System Info </h1>
|
|
<p>fqdn/certname:
|
|
<%= $trusted[certname] %>
|
|
</p>
|
|
<p>ip address:
|
|
<%= $networking[ip] %>
|
|
</p>
|
|
<p>total system memory:
|
|
<%= $memory[system][total] %>
|
|
</p>
|
|
<p>vm uuid:
|
|
<%= $trusted[extensions][pp_uuid] %>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|