@caweb/html-webpack-plugin 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caweb/html-webpack-plugin",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "CAWebPublishing Sample Page and Configurations",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/sample/index.html CHANGED
@@ -3,47 +3,6 @@
3
3
  <title>{{ title }}</title>
4
4
  </head>
5
5
  <body>
6
- <!-- Header -->
7
- <header id="top" class="site__header">
8
- <nav>
9
- <ul>
10
- <li>
11
- <button class="button__theme-toggle" aria-label="Dark Mode"></button>
12
- </li>
13
- </ul>
14
- </nav>
15
- </header>
16
- <!-- Page Container -->
17
- <div id="page-container">
18
- <!-- Sidebar -->
19
- <aside></aside>
20
- <!-- Content -->
21
- <div id="page-content">
22
- <section>
23
- <header>
24
- <h2>CAWebPublishing Service</h2>
25
- </header>
26
- <h1>Our Vision</h1>
27
- <p>We make it easier to build, improve, and manage government websites.</p>
28
-
29
- <h2>Mission Statement</h2>
30
- <p>We serve the state of California by providing the guidance, tools, and publishing platform needed to create high-quality, universal, and effective digital experiences.</p>
31
-
32
- <h2>Our Values</h2>
33
- <ul>
34
- <li>We put the needs of people first.</li>
35
- <li>We care about accessibility.</li>
36
- <li>We design for user experience.</li>
37
- <li>We use research to inform decision-making.</li>
38
- <li>We continually learn and improve.</li>
39
- <li>We collaborate.</li>
40
- </ul>
41
- </section>
42
- </div> <!-- Close Content div -->
43
- </div> <!-- Close Page Container div -->
44
- <!-- Footer -->
45
- <footer>
46
-
47
- </footer>
6
+ {{> content }}
48
7
  </body>
49
8
  </html>
@@ -0,0 +1,2 @@
1
+ <b>Content file was not found.</b>
2
+ <p>To add content, add a <code style="color:red">/sample/index.html</code> to the root of <code style="color:red">{{title}}</code> project.</p>