Compare commits

..

No commits in common. "e450f3fbc7f8c86feb6e51945e6afa10d33bc4e1" and "fa5c014a1b037bd51d0646c84467175e570b8995" have entirely different histories.

3 changed files with 6 additions and 15 deletions

View File

@ -296,14 +296,6 @@
height: 32px; height: 32px;
} }
/* https://stackoverflow.com/a/72073682/19003757 */
/*
.telegram-share > svg {
transform: scale(1.5);
margin: 9px -9px -9px 9px;
}
*/
/* Back to top */ /* Back to top */
#back-to-top { #back-to-top {

View File

@ -1 +1,6 @@
{{ partialCached "icon_code.html" . . }} {{- $icon_resource := resources.Get (printf "jam/icons/%s.svg" .) -}}
{{- $icon := $icon_resource.Content -}}
{{- $icon = replaceRE `<svg` `<svg class="icon"` $icon -}}
{{- $icon = replaceRE `</svg>` (printf `<title>%s icon</title></svg>` .) $icon -}}
{{- $icon = replaceRE `(width|height)="[0-9]*"` "" $icon -}}
{{- $icon | safeHTML -}}

View File

@ -1,6 +0,0 @@
{{- $icon_resource := resources.Get (printf "jam/icons/%s.svg" .) -}}
{{- $icon := $icon_resource.Content -}}
{{- $icon = replaceRE `<svg` `<svg class="icon"` $icon -}}
{{- $icon = replaceRE `</svg>` (printf `<title>%s icon</title></svg>` .) $icon -}}
{{- $icon = replaceRE `(width|height)="[0-9]*"` "" $icon -}}
{{- $icon | safeHTML -}}