mirror of
https://github.com/McShelby/hugo-theme-relearn
synced 2025-04-30 11:29:05 +08:00
17 lines
649 B
HTML
17 lines
649 B
HTML
{{- $showvisitedlinks := site.Params.showVisitedLinks }}
|
|
{{- if $showvisitedlinks }}
|
|
{{- $icon := .element.icon | default "history" }}
|
|
{{- if and $icon (not (findRE ".*?\\bfa-\\w.*?" $icon)) }}
|
|
{{- $icon = printf "fa-fw fas fa-%s" $icon }}
|
|
{{- end }}
|
|
<li class="R-historyclearer">
|
|
<div class="padding menu-control">
|
|
<i class="{{ $icon }}"></i>
|
|
<span> </span>
|
|
<div class="control-style">
|
|
<button>{{ T "Clear-History" }}</button>
|
|
</div>
|
|
<div class="clear"></div>
|
|
</div>
|
|
</li>
|
|
{{- end }} |