This repository has been archived on 2024-06-06. You can view files and clone it, but cannot push or open issues or pull requests.
portfolios_exemple3_abandon/layouts/index.html

20 lines
651 B
HTML
Raw Permalink Normal View History

2021-12-13 15:29:38 +01:00
{{ partial "header.html" . }}
{{ partial "sidebar.html" . }}
<div class="main-content">
{{ if .Site.Data.skills }}{{ partial "skills.html" . }}{{ end }}
{{ if .Site.Data.experience }}{{ partial "experience.html" . }}{{ end }}
{{ if .Site.Data.services }}{{ partial "services.html" . }}{{ end }}
</div>
<div style="z-index: 4; position: relative;">
{{ if gt (len (where .Data.Pages "Type" "blog")) 0 }}{{ partial "blog.html" . }}{{ end }}
{{ if gt (len (where .Data.Pages "Type" "work")) 0 }}{{ partial "work.html" . }}{{ end }}
</div>
<div class="main-content">
{{ partial "contact.html" . }}
</div>
{{ partial "footer-scripts.html" . }}