mirror of
https://github.com/ItsDrike/itsdrike.com.git
synced 2024-11-10 05:59:41 +00:00
29 lines
735 B
HTML
29 lines
735 B
HTML
<!DOCTYPE HTML>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="Content-Language" content="{{ .Site.Language.Lang }}">
|
|
{{ partial "style.html" "scss/style.scss" }}
|
|
{{ partial "style.html" "css/highlight.css" }}
|
|
{{ partial "style.html" "css/font-awesome.css" }}
|
|
|
|
{{ partial "favicon.html" }}
|
|
|
|
<title>{{ partial "title-item.html" . }}{{ .Site.Title }}</title>
|
|
|
|
{{ block "head_extra" . }}{{ end }}
|
|
</head>
|
|
|
|
<body>
|
|
{{ partial "navbar.html" . }}
|
|
{{ block "main" . }}{{ end }}
|
|
{{ partial "footer.html" . }}
|
|
|
|
{{ partial "script.html" "js/jquery.min.js" }}
|
|
{{ partial "script_async.html" "js/bootstrap.min.js" }}
|
|
{{ block "scripts_extra" . }}{{ end }}
|
|
</body>
|
|
|
|
</html>
|