51 lines
1.9 KiB
HTML
51 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="Colin Knapp - Tool Example">
|
|
<title>Tool Example - Colin Knapp</title>
|
|
<link rel="icon" type="image/x-icon" href="../favicon.ico">
|
|
<link rel="stylesheet" href="../styles.css">
|
|
<link rel="stylesheet" href="tool-styles.css" integrity="sha256-Y+6RTuKMnPfNa1TjCQCcFhxwo0G+xNy7t1MaAvn5SuU=">
|
|
<script src="../theme.js" integrity="sha256-+dDNTo7WAOmn2YC875+vn9oH4UkMwlVOGlARp2uq3A4="></script>
|
|
<script src="../utils.js" integrity="sha256-ryQsJ+aghKKD/CeXgx8jtsnZT3Epp3EjIw8RyHIq544="></script>
|
|
<script src="../includes.js" integrity="sha256-q9ac7XWqnIASoBRfs4I4hpSMlnxGARofcEw0cSFfn/E="></script>
|
|
<script src="tool-example.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<!-- Header Include -->
|
|
<div id="header-include"></div>
|
|
|
|
<!-- Main Content -->
|
|
<h1>Tool Example</h1>
|
|
<p>A simple example tool to demonstrate the includes system.</p>
|
|
|
|
<div class="tool-container">
|
|
<div class="tool-controls">
|
|
<h3>Tool Controls</h3>
|
|
<div class="form-group">
|
|
<label for="exampleInput">Example Input:</label>
|
|
<input type="text" id="exampleInput" class="form-control" placeholder="Enter some text...">
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<button id="exampleButton" class="btn">Process</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="tool-output" id="output">
|
|
<p class="alert alert-info">Output will appear here.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
<h2>About This Tool</h2>
|
|
<p>This is an example tool page that demonstrates how to use the includes system.</p>
|
|
|
|
<!-- Footer Include -->
|
|
<div id="footer-include"></div>
|
|
</body>
|
|
</html>
|