make home link dynamic

This commit is contained in:
andrzej 2024-11-15 09:44:21 +01:00
parent 2e42ee1094
commit ff9362a353
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@
</head>
<body>
<header>
<a href="http://localhost:1313"><h1>CODING WITH ANDRZEJ</h1></a>
<a href=http://localhost:1313/><h1>CODING WITH ANDRZEJ</h1></a>
<nav>
<ul>

View File

@ -1,2 +1,2 @@
<a href="http://localhost:1313"><h1>{{ site.Title }}</h1></a>
<a href={{site.BaseURL}}><h1>{{ site.Title }}</h1></a>
{{ partial "menu.html" (dict "menuID" "main" "page" .) }}