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

awards.html « partials « layouts - github.com/cowboysmall-tools/hugo-devresume-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da74f12bd44b9da0fe4ca902f075676080fb5c2f (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 "awards" }}</h3>

                                <ul class="list-unstyled resume-awards-list">
                                    {{ range .Site.Params.awards.list }}
                                    <li class="mb-3">
                                        <div class="font-weight-bold">{{ .name }}</div>
                                        <div class="text-muted">{{ .body }}</div>
                                        <div class="text-muted">{{ .date }}</div>
                                    </li>
                                    {{ end }}
                                </ul>

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