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

home_profile.html « partials « layouts - github.com/Fastbyte01/KeepIt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fc929269e78a305cfd07f828bfc8c8002447b100 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="intro">
    {{ $cdn_url := .Scratch.Get "cdn_url" }}
    
    <div class="avatar">
        <img src="https://www.gravatar.com/avatar/{{ md5 .Site.Params.gravatar.email }}?s=240&d=mp" alt="gravatar">
    </div>
    {{ with .Site.Params.subtitle}}
    <h2 class="description">
       {{ . }}
    </h2>
    {{ end }}
    <div class="social-links">
      {{ partial "social.html" . }}
    </div>
</div>