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

homeHeader.html « partials « layouts - github.com/urjaacharya/redgood.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a32c792b3fa3383d79bdb168bfba960026ec82c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<header class="home-page-header">
  <div class="header-image-container">
    <div class="header-image">
      <img
        src="{{ .Site.Params.about.profileImage | relURL }}"
        alt="profile image of {{ .Site.Params.author }}"
      />
    </div>
  </div>
  <div class="header-info">
    <h1 class="main-title">{{- .Site.Title -}}</h1>
    <p class="about-narrative">
      {{ .Site.Params.about.narrative | markdownify }}
    </p>
    {{ partial "social" . }}
  </div>
</header>