WHAT WAS DONE: Created header.njk component with announcement banner and navigation bar. Added header to base.njk layout so it appears on all pages. COMPONENTS: - Announcement banner (Fire/Frost/Arcane gradient) Text: 'Soft Launch April 2026 - Join the Trinity. Built for children not yet born.' - Navigation bar with logo and links Links: Home, Servers, About, Contact, Subscribe (gradient CTA button) - Logo: /assets/images/2026/02/Dark-Logo.png STYLING: - Dark background (#0a0a1a) matching site theme - Frost cyan border bottom - Fire/Frost/Arcane gradient on announcement and Subscribe button - Responsive spacing and typography FILES: - _includes/header.njk (new) - _includes/layouts/base.njk (modified - added header include) STATUS: Header now appears site-wide on all pages Signed-off-by: Claude (Chronicler #56) <claude@firefrostgaming.com>
10 lines
162 B
Plaintext
10 lines
162 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
{% include "head.njk" %}
|
|
<body>
|
|
{% include "header.njk" %}
|
|
{{ content | safe }}
|
|
{% include "footer.njk" %}
|
|
</body>
|
|
</html>
|