diff options
Diffstat (limited to 'themes/hugo-xmin/layouts/partials')
| -rw-r--r-- | themes/hugo-xmin/layouts/partials/footer.html | 8 | ||||
| -rw-r--r-- | themes/hugo-xmin/layouts/partials/header.html | 21 |
2 files changed, 0 insertions, 29 deletions
diff --git a/themes/hugo-xmin/layouts/partials/footer.html b/themes/hugo-xmin/layouts/partials/footer.html deleted file mode 100644 index e8560f2..0000000 --- a/themes/hugo-xmin/layouts/partials/footer.html +++ /dev/null @@ -1,8 +0,0 @@ - <footer> - {{ with .Site.Params.footer }} - <hr/> - {{ replace . "{Year}" now.Year | markdownify}} - {{ end }} - </footer> - </body> -</html> diff --git a/themes/hugo-xmin/layouts/partials/header.html b/themes/hugo-xmin/layouts/partials/header.html deleted file mode 100644 index c7ab268..0000000 --- a/themes/hugo-xmin/layouts/partials/header.html +++ /dev/null @@ -1,21 +0,0 @@ -<!DOCTYPE html> -<html lang="{{ .Site.LanguageCode }}"> - <head> - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width, initial-scale=1"> - <title>{{ .Title }} | {{ .Site.Title }}</title> - <link rel="stylesheet" href="{{ "css/style.css" | relURL }}" /> - <link rel="stylesheet" href="{{ "css/fonts.css" | relURL }}" /> - <link rel="stylesheet" href="{{ "css/syntax.css" | relURL }}" /> - </head> - - <body> - <nav> - <a href="/">Home</a> - <a href="/about/">About</a> - <ul class="menu"> - {{ range .Site.Menus.main }} - <li><a href="{{ .URL | relURL }}">{{ .Name }}</a></li> - {{ end }} - </ul> - </nav> |