site

Francesco Saccone's site content.
git clone git://git.francescosaccone.com/site
Log | Files | Refs | README | LICENSE

commit 1239576304efedbed6de7d39a51bcb2e171023ea
parent 3e22d5a607f26c273978f5f79a63d912541992c7
Author: Francesco Saccone <francesco@francescosaccone.com>
Date:   Fri,  7 Mar 2025 18:47:57 +0100

feat: add header.html

This contains the HTML code to be put before the content generated by the
Markdown parser.

Signed-off-by: Francesco Saccone <francesco@francescosaccone.com>

Diffstat:
Aheader.html | 16++++++++++++++++
1 file changed, 16 insertions(+), 0 deletions(-)

diff --git a/header.html b/header.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width,initial-scale=1.0"> + <link rel="stylesheet" type="text/css" href="/public/style.css"> + <title>Francesco Saccone</title> + </head> + <body> + <header> + <nav> + <a href="/">About</a> + <a href="/notes">Notes</a> + </nav> + </header> + <main>