How is .shtml SO amazing?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dynamic Content with SSI and CLI Tools</title>
</head>
<body>
<h1>Welcome to the Dynamic Web Page</h1>
<p>This page demonstrates the power of combining CLI tools with HTML templates.</p>
<h2>Current Date and Time</h2>
<!-- Include the output of a CLI tool that provides the current date and time -->
<pre>
<!--#exec cmd="date" -->
</pre>
<h2>System Uptime</h2>
<!-- Include the output of a CLI tool that provides system uptime -->
<pre>
<!--#exec cmd="uptime" -->
</pre>
<h2>Disk Usage Report</h2>
<!-- Include the output of a CLI tool that provides disk usage -->
<pre>
<!--#exec cmd="df -h" -->
</pre>
<h2>Custom Data</h2>
<p>Generate dynamic custom data using a script:</p>
<pre>
<!--#exec cmd="/usr/bin/python3 /path/to/generate_data.py" -->
</pre>
<footer>
<p>Powered by SSI and CLI tools. Try modifying this page to include your own scripts and commands!</p>
</footer>
</body>
</html>