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

github.com/gethugothemes/dot-hugo-documentation-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOzan Hanedan <oznhndn@gmail.com>2021-03-06 22:49:02 +0300
committerOzan Hanedan <oznhndn@gmail.com>2021-03-06 22:49:02 +0300
commit38d6b31f390c65473d299104d604cb54c324912e (patch)
tree48b45c779b8bbfaa4011c619721864cad3f7b90f
parent4319d68ad6af72e96e23f68be6a4dac2d403a314 (diff)
change anchorize to sha1 on faq shortcode
-rw-r--r--layouts/shortcodes/faq.html33
1 files changed, 8 insertions, 25 deletions
diff --git a/layouts/shortcodes/faq.html b/layouts/shortcodes/faq.html
index 99aa589..204863d 100644
--- a/layouts/shortcodes/faq.html
+++ b/layouts/shortcodes/faq.html
@@ -1,29 +1,12 @@
{{ $_hugo_config := `{ "version": 1 }` }}
-{{ if .Get 1 }}
- <div class="card mb-4 rounded-0 shadow border-0">
- <div class="card-header rounded-0 bg-white border p-0 border-0">
- <a class="card-link h4 d-flex tex-dark mb-0 py-3 px-4 justify-content-between" data-toggle="collapse"
- href="#{{ .Get 1 }}">
- <span>{{ .Get 0 | markdownify }}</span> <i class="ti-plus text-primary text-right"></i>
-
- </a>
- </div>
- <div id="{{ .Get 1 }}" class="collapse" data-parent="#accordion">
- <div class="card-body font-secondary text-color">{{ .Inner | markdownify }}</div>
- </div>
+<div class="card mb-4 rounded-0 shadow border-0">
+ <div class="card-header rounded-0 bg-white border p-0 border-0">
+ <a class="card-link h4 d-flex tex-dark mb-0 py-3 px-4 justify-content-between" data-toggle="collapse" href="#{{ .Get 0 | sha1 }}">
+ <span>{{ .Get 0 | markdownify }}</span> <i class="ti-plus text-primary text-right"></i>
+ </a>
</div>
-{{else}}
- <div class="card mb-4 rounded-0 shadow border-0">
- <div class="card-header rounded-0 bg-white border p-0 border-0">
- <a class="card-link h4 d-flex tex-dark mb-0 py-3 px-4 justify-content-between" data-toggle="collapse"
- href="#{{ .Get 0 | anchorize }}">
- <span>{{ .Get 0 | markdownify }}</span> <i class="ti-plus text-primary text-right"></i>
-
- </a>
- </div>
- <div id="{{ .Get 0 | anchorize }}" class="collapse" data-parent="#accordion">
- <div class="card-body font-secondary text-color">{{ .Inner | markdownify }}</div>
- </div>
+ <div id="{{ .Get 0 | sha1 }}" class="collapse" data-parent="#accordion">
+ <div class="card-body font-secondary text-color">{{ .Inner | markdownify }}</div>
</div>
-{{end}} \ No newline at end of file
+</div> \ No newline at end of file