-
-
Notifications
You must be signed in to change notification settings - Fork 580
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (22 loc) · 998 Bytes
/
Copy pathindex.html
File metadata and controls
26 lines (22 loc) · 998 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{{ define "head" }}
<meta name="description" content="{{ .Site.Params.description }}">
<link rel="stylesheet" href="{{ (printf "%scss/index.css" (.Site.Params.staticPath | default "")) | relURL }}" media="all">
<link rel="stylesheet" href="{{ (printf "%scss/projects.css" (.Site.Params.staticPath | default "")) | relURL }}" media="all">
{{ with .Site.Params.hero.image }}
<link rel="preload" as="image" href="{{ . }}">
{{ end }}
<!-- fontawesome -->
<script defer src="{{ (printf "%sfontawesome-6/all-6.4.2.js" (.Site.Params.staticPath | default "")) | relURL }}"></script>
{{ end }}
{{ define "title" }}
{{ .Site.Title }}
{{ end }}
{{ define "main" }}
{{- partial "sections/hero/index.html" . -}}
{{- partial "sections/about.html" . -}}
{{- partial "sections/experience.html" . -}}
{{- partial "sections/education.html" . -}}
{{- partial "sections/projects.html" . -}}
{{- partial "sections/achievements.html" . -}}
{{- partial "sections/contact.html" . -}}
{{ end }}