Skip to content

Commit d7b47ee

Browse files
author
danil-nizamov
committed
renamed html file
1 parent 2a8d8d1 commit d7b47ee

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The core CSS framework providing:
1111
- Reusable component styles (buttons, forms, modals, cards)
1212
- Responsive design utilities
1313

14-
### 2. `template.html`
14+
### 2. `index.html`
1515
A base HTML template that includes:
1616
- Navigation header with app name and help button
1717
- Main layout structure (sidebar + content area)
@@ -276,7 +276,7 @@ document.getElementById('btn-help').addEventListener('helpModal:close', (e) => {
276276
```
277277
generalised/
278278
├── bespoke.css # Core CSS framework
279-
├── template.html # Base HTML template
279+
├── index.html # Base HTML template
280280
├── help-modal.js # Help modal JavaScript
281281
├── help-content-template.html # Help content template
282282
└── README.md # This file

context.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Every application MUST include these files in the following order:
1616
HTML TEMPLATE IMPLEMENTATION
1717
============================
1818

19-
1. REPLACE the following placeholders in template.html EXACTLY as specified:
19+
1. REPLACE the following placeholders in index.html EXACTLY as specified:
2020

2121
a) <!-- APP_TITLE -->
2222
Replace with your application's page title
File renamed without changes.

server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const server = http.createServer((req, res) => {
4646

4747
// Default to index.html for root path
4848
if (pathname === '/') {
49-
pathname = '/template.html';
49+
pathname = '/index.html';
5050
}
5151

5252
// Remove leading slash and construct file path

0 commit comments

Comments
 (0)