Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sidebar.html « partials « layouts - github.com/cowboysmall-tools/hugo-devresume-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3d9cd12893b6bca33ace41efe9a0f050f82f3019 (plain)
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

                        <aside class="resume-aside col-12 col-lg-4 col-xl-3 px-lg-4 pb-lg-4">


                            {{ if .Site.Params.education.enable }}
                            {{ partial "education.html" . }}
                            {{ end }}

                            {{ if .Site.Params.awards.enable }}
                            {{ partial "awards.html" . }}
                            {{ end }}

                            {{ if .Site.Params.skills.enable }}
                            {{ partial "skills.html" . }}
                            {{ end }}

                            {{ if .Site.Params.languages.enable }}
                            {{ partial "languages.html" . }}
                            {{ end }}

                            {{ if .Site.Params.interests.enable }}
                            {{ partial "interests.html" . }}
                            {{ end }}

                        </aside><!--//resume-aside-->