mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2025-03-20 16:15:09 +00:00
14 lines
No EOL
571 B
HTML
14 lines
No EOL
571 B
HTML
{{- $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 onclick="clearHistory();">{{ T "Clear-History" }}</button>
|
|
</div>
|
|
<div class="clear"></div>
|
|
</div>
|
|
</li> |