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

header.html « partials « layouts - github.com/darshanbaral/sada.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d7fc9e7b9a3e38a8e69cf89a968a0a6005056b11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="d-flex flex-column flex-sm-row mt-2">
    <div class="mr-4">
        <img class="rounded-circle pt-2 mb-2" src="{{ .Site.BaseURL }}/images/{{ .Site.Params.profile.photo }}" alt="{{ .Site.Params.author }}"
            style="width: 150px;" />
        {{ partial "social.html" . }}
    </div>

    <div>
        <h1 class="text-white mb-1">{{ .Site.Params.profile.name }}</h1>
        <h3 class="text-light">{{ .Site.Params.description }}</h3>
        <p class="text-white">{{ .Site.Params.aboutme.description | markdownify }}</p>
    </div>
</div>