26 lines
1.1 KiB
HTML
26 lines
1.1 KiB
HTML
{{ define "head" }}
|
|
<meta name="description" content="{{ .Site.Params.description }}">
|
|
<meta property="og:image" content="{{ .Site.Params.hero.image }}"/>
|
|
<meta property="og:title" content="{{ .Site.Params.title }}" />
|
|
<meta property="og:description" content="{{ .Site.Params.description }}" />
|
|
<meta property="og:url" content="{{ .Site.Params.baseURL }}" />
|
|
<!-- <link rel="stylesheet" href="{{ .Site.Params.staticPath }}/css/index.css" media="all">
|
|
<link rel="stylesheet" href="{{ .Site.Params.staticPath }}/css/projects.css" media="all"> -->
|
|
|
|
<!-- fontawesome -->
|
|
<!-- <script defer src="{{ .Site.Params.staticPath }}/fontawesome-6/all-6.4.2.js"></script> -->
|
|
{{ end }}
|
|
|
|
{{ define "title" }}
|
|
{{ .Site.Title }}
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
{{- partial "sections/hero/index.html" . -}}
|
|
{{- partial "sections/about.html" . -}}
|
|
{{- partial "sections/experience.html" . -}}
|
|
{{- partial "sections/achievements.html" . -}}
|
|
{{- partial "sections/projects.html" . -}}
|
|
{{- partial "sections/education.html" . -}}
|
|
{{- partial "sections/contact.html" . -}}
|
|
{{ end }} |