Files
hugo-profile/layouts/_default/baseof.html
T
gurusabarish 54bcff5142 v3 development
2021-05-13 22:48:06 +05:30

41 lines
990 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{{ if eq .Site.Params.version 1 }}
{{- partial "sections/v1/head.html" . -}}
<link href="/css/bootstrap.min.css" rel="stylesheet">
<link href="/css/v1/head_foot.css" rel="stylesheet">
{{- block "head" . -}}{{- end }}
{{ else if eq .Site.Params.version 2 }}
{{- partial "sections/v2/head.html" . -}}
{{- block "head" . -}}{{- end }}
{{ else if eq .Site.Params.version 3 }}
{{ else }}
{{ end }}
</head>
<body>
{{ if eq .Site.Params.version 1 }}
{{- partial "sections/v1/scripts.html" . -}}
{{- partial "sections/v1/header1.html" . -}}
{{- block "main" . -}}{{- end }}
{{- partial "sections/v1/footer.html" . -}}
{{ else if eq .Site.Params.version 2 }}
{{- partial "sections/v2/scripts.html" . -}}
{{- partial "sections/v2/header.html" . -}}
{{- block "main" . -}}{{- end }}
{{- partial "sections/v2/footer.html" . -}}
{{ else if eq .Site.Params.version 3 }}
{{ else }}
{{ end }}
</body>
</html>