diff options
Diffstat (limited to 'themes/xmin/layouts/partials/header.html')
-rw-r--r-- | themes/xmin/layouts/partials/header.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/themes/xmin/layouts/partials/header.html b/themes/xmin/layouts/partials/header.html new file mode 100644 index 0000000..b3dbf64 --- /dev/null +++ b/themes/xmin/layouts/partials/header.html @@ -0,0 +1,19 @@ +<!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 }}" /> + {{ partial "head_custom.html" . }} + </head> + + <body> + <nav> + <ul class="menu"> + {{ range .Site.Menus.main }} + <li><a href="{{ .URL | relURL }}">{{ .Name }}</a></li> + {{ end }} + </ul> + <hr/> + </nav> |