diff options
Diffstat (limited to '_default')
-rwxr-xr-x | _default/baseof.html | 44 | ||||
-rw-r--r-- | _default/single.html | 6 |
2 files changed, 0 insertions, 50 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> diff --git a/_default/single.html b/_default/single.html deleted file mode 100644 index c7110a4..0000000 --- a/_default/single.html +++ /dev/null @@ -1,6 +0,0 @@ -{{ define "main" }} - -<h1><u>{{ .Title }}</u></h1> -{{ .Content }} - -{{ end }} |