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

github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/home/profile.html')
-rw-r--r--layouts/partials/home/profile.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/layouts/partials/home/profile.html b/layouts/partials/home/profile.html
index 3377e7c..04c0374 100644
--- a/layouts/partials/home/profile.html
+++ b/layouts/partials/home/profile.html
@@ -1,4 +1,4 @@
-<div class="intro">
+<div class="home-intro">
{{ $avatar := "" }}
{{ if .Site.Params.gravatar.email }}
{{ $avatar = (printf "https://www.gravatar.com/avatar/%s?s=240&d=mp" (md5 .Site.Params.gravatar.email)) }}
@@ -6,7 +6,7 @@
{{ $avatar = .Site.Params.avatar }}
{{ end }}
{{ if $avatar }}
- <div class="avatar">
+ <div class="home-avatar">
<a href="/posts/">
<img src={{ $avatar }} alt="avatar">
</a>
@@ -14,7 +14,7 @@
{{ end }}
{{ with .Site.Params.subtitle }}
- <h2 class="description">
+ <h2 class="home-description">
{{ $id := md5 . | printf "tp-%s" }}
<div id={{ printf "r%s" $id }} hidden=true>{{ . | safeHTML }}</div>
<div id={{ $id }} class="typeit"></div>
@@ -26,7 +26,7 @@
</h2>
{{ end }}
- <div class="social-links">
+ <div class="home-social-links">
{{ partial "home/social.html" . }}
</div>
</div>