diff options
Diffstat (limited to '_default/baseof.html')
-rwxr-xr-x | _default/baseof.html | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/_default/baseof.html b/_default/baseof.html deleted file mode 100755 index 3a2c806..0000000 --- a/_default/baseof.html +++ /dev/null @@ -1,44 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> - <head> - <meta charset="UTF-8"> - <link rel="icon" href="logo.png" width="192" height="192"> - <link rel="preconnect" href="https://fonts.googleapis.com"> - <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> - <link href="https://fonts.googleapis.com/css2?family=Balthazar&display=swap" rel="stylesheet"> - <link rel="stylesheet" href="/style.css"> - {{ $title := site.Title }} - {{ if not .IsHome }} - {{ $title = printf "%s | %s" .Title site.Title }} - {{ end }} - <title> - {{ $title }} - </title> - </head> - - - <header> - <img src="/logo.png"> - <div class="topnav"> - {{ partial "menu.html" . }} - </div> - <br> - </header> - - <body> - <div class="box"> - <main> - {{ block "main" . }}{{ end }} - </main> - </div> - </body> - - <body> - <div class="contact"> - </div> - </body> - - <footer> - <p>Designed by <a style="color:#174372;" href="https://btkoch.xyz">Kocher Web Styling</a></p> - </footer> -</html> |