-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomponent-template.html
More file actions
61 lines (55 loc) · 2.1 KB
/
Copy pathcomponent-template.html
File metadata and controls
61 lines (55 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Component Name | NoJS UI Components</title>
<link rel="stylesheet" href="../../style.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<div class="header-content">
<a href="../../index.html" class="logo">NoJS UI</a>
<!-- Nav commented out until implemented -->
<!--
<nav class="nav">
<a href="../../index.html#components" class="nav-link">Components</a>
<a href="../../index.html#about" class="nav-link">About</a>
<a href="../../index.html#docs" class="nav-link">Documentation</a>
<a href="#" class="nav-link">GitHub</a>
</nav>
-->
</div>
</div>
</header>
<main class="component-demo">
<div class="container">
<h1>Component Name</h1>
<p class="component-description">Component description goes here.</p>
<div class="demo-container">
<!-- Component demo content goes here -->
</div>
<div class="component-info">
<h2>How It Works</h2>
<p>Explanation of how the component works goes here.</p>
<div class="code-example">
<code><!-- Code example goes here --></code>
</div>
<h3>Accessibility Features</h3>
<p>The component is designed to be accessible, with the following features:</p>
<ul>
<li>Accessibility feature 1</li>
<li>Accessibility feature 2</li>
<li>Accessibility feature 3</li>
</ul>
</div>
</div>
</main>
<!-- Add any JavaScript needed for the component here -->
<script>
// JavaScript goes here
</script>
</body>
</html>