mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-05 04:40:43 +00:00
24 lines
402 B
HTML
24 lines
402 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.Language.Lang }}">
|
|
|
|
<head>
|
|
{{ partial "head" . }}
|
|
</head>
|
|
|
|
<body>
|
|
{{ partial "svg-icon-symbols" . }}
|
|
|
|
<div class="wrapper">
|
|
{{ partial "site-header" . }}
|
|
|
|
<main class="gblog-page container">
|
|
{{ template "main" . }}
|
|
</main>
|
|
|
|
{{ partial "site-footer" . }}
|
|
</div>
|
|
|
|
{{ partial "foot" . }}
|
|
</body>
|
|
</html>
|