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

github.com/urjaacharya/redgood.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/homeHeader.html')
-rw-r--r--layouts/partials/homeHeader.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/layouts/partials/homeHeader.html b/layouts/partials/homeHeader.html
new file mode 100644
index 0000000..a32c792
--- /dev/null
+++ b/layouts/partials/homeHeader.html
@@ -0,0 +1,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>