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

education.html « partials « layouts - github.com/cowboysmall-tools/hugo-devresume-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c457e8c5c4a0c7209c344f6d8c8e6d56ecabd0d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
                            <section class="education-section py-3">

                                <h3 class="text-uppercase resume-section-heading mb-4">{{ i18n "education" }}</h3>

                                <ul class="list-unstyled resume-education-list">
                                    {{ range .Site.Params.education.list }}
                                    <li class="mb-3">
                                        <div class="resume-degree font-weight-bold">{{ .degree }}</div>
                                        <div class="resume-degree-org text-muted">{{ .university }}</div>
                                        <div class="resume-degree-time text-muted">{{ .dates }}</div>
                                    </li>
                                    {{ end }}
                                </ul>

                            </section><!--//education-section-->