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

github.com/danielkvist/hugo-piercer-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordanielkvist <d94.zaragoza@gmail.com>2019-04-02 13:21:15 +0300
committerdanielkvist <d94.zaragoza@gmail.com>2019-04-02 13:21:15 +0300
commit5e468736e025a66c3e3b26d707a91d71bdc8a4d8 (patch)
tree96cc9bdab1ddba63aeffb3ffa537dd7b0e066549
parent187e7c0e98643669fe18a9a172501fdf0d875519 (diff)
add IDs
-rw-r--r--layouts/partials/contact-info.html2
-rw-r--r--layouts/partials/contact.html2
-rw-r--r--layouts/partials/footer.html2
-rw-r--r--layouts/partials/header.html2
-rw-r--r--layouts/partials/hero.html2
-rw-r--r--layouts/partials/social.html2
6 files changed, 6 insertions, 6 deletions
diff --git a/layouts/partials/contact-info.html b/layouts/partials/contact-info.html
index 8da5546..2429acc 100644
--- a/layouts/partials/contact-info.html
+++ b/layouts/partials/contact-info.html
@@ -1,4 +1,4 @@
-<section class="contact-info">
+<section class="contact-info" id="contactInfo">
<address class="contact-info__info">
<!-- Email -->
diff --git a/layouts/partials/contact.html b/layouts/partials/contact.html
index f7846ba..0d1bf8b 100644
--- a/layouts/partials/contact.html
+++ b/layouts/partials/contact.html
@@ -1,4 +1,4 @@
-<section class="contact">
+<section class="contact" id="contact">
<h1 class="contact__title">
{{ $.Site.Params.form.Section }}
</h1>
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 8c908af..90e59f1 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -1,4 +1,4 @@
-<footer class="footer">
+<footer class="footer" id="footer">
<!-- Social Links -->
{{ if $.Site.Params.social }}
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 3d7e7d4..2100182 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -1,4 +1,4 @@
-<header class="header">
+<header class="header" id="header">
<!-- Title -->
<div class="header__title">
diff --git a/layouts/partials/hero.html b/layouts/partials/hero.html
index ed59a0a..fab00d2 100644
--- a/layouts/partials/hero.html
+++ b/layouts/partials/hero.html
@@ -5,7 +5,7 @@
{{ $bkg = printf "%s%s%s" "background-image: url('" $bkgURL "');"}}
{{ end }}
-<section class="hero bkg-image" style="{{ safeCSS $bkg }}">
+<section class="hero bkg-image" style="{{ safeCSS $bkg }}" id="hero">
<!-- Content -->
{{ .Content }}
diff --git a/layouts/partials/social.html b/layouts/partials/social.html
index 44c19d5..706e44f 100644
--- a/layouts/partials/social.html
+++ b/layouts/partials/social.html
@@ -1,4 +1,4 @@
-<section class="social-links">
+<section class="social-links" id="socialLinks">
{{ $links := $.Site.Params.Social }}