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

social.html « partials « layouts - github.com/cowboysmall-tools/hugo-devresume-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 737c1fa217b8a31776447602a7dcc016dfa69c76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
                <div class="resume-footer text-center">

                    <ul class="resume-social-list list-inline mx-auto mb-0 d-inline-block text-muted">
                        {{ range .Site.Params.social.list }}
                        <li class="list-inline-item mb-lg-0 mr-3">
                            <a class="resume-link" href="{{ .url }}" target="_blank">
                                <i class="{{ .style }} {{ .icon }} fa-2x mr-2" data-fa-transform="down-4"></i>
                                <span class="d-none d-lg-inline-block text-muted">{{ .title }}</span>
                            </a>
                        </li>
                        {{ end }}
                    </ul>

                </div><!--//resume-footer-->