remove external js/fonts/google/cloudflare

This commit is contained in:
Ben Charlton 2024-04-14 13:23:57 +01:00
parent b57e76e2bc
commit c5aaf57b69
2 changed files with 6 additions and 23 deletions

View file

@ -35,18 +35,10 @@
{{- end}} {{- end}}
<link rel="stylesheet" <link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700&display=swap"> href="/fonts.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css"
integrity="sha256-mmgLkCYLUQbXn0B1SRqzHar6dCnv9oZFPEC1g1cwlkk="
crossorigin="anonymous" />
<link rel="apple-touch-icon-precomposed" <link rel="shortcut icon" href="/favicon.ico">
sizes="144x144"
href="/apple-touch-icon-144-precomposed.png">
<link rel="shortcut icon" href="/favicon.png">
<!-- RSS --> <!-- RSS -->
{{ range .AlternativeOutputFormats -}} {{ range .AlternativeOutputFormats -}}
@ -56,26 +48,16 @@
<body> <body>
{{ partial "sidebar.html" . }} {{ partial "sidebar.html" . }}
<main class="content container"> <main class="content container" data-pagefind-body>
{{ block "main" . -}}{{- end }} {{ block "main" . -}}{{- end }}
</main> </main>
{{ partial "footer.html" . }} {{ partial "footer.html" . }}
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/js/all.min.js"
integrity="sha256-MAgcygDRahs+F/Nk5Vz387whB4kSK9NXlDN3w58LLq0="
crossorigin="anonymous"></script>
<script src="{{ `js/jquery.min.js` | relURL }}"></script>
<script src="{{ `js/soho.js` | relURL }}"></script>
{{ range $.Site.Params.customJs -}} {{ range $.Site.Params.customJs -}}
<script src="{{ . | relURL }}"></script> <script src="{{ . | relURL }}"></script>
{{- end}} {{- end}}
{{ if not hugo.IsServer }}
{{ template "_internal/google_analytics.html" . }}
{{ end }}
</body> </body>
</html> </html>

View file

@ -1,4 +1,4 @@
<aside class="sidebar"> <aside class="sidebar" data-pagefind-ignore="all">
<div class="container"> <div class="container">
<div class="sidebar-about"> <div class="sidebar-about">
{{ with .Site.Params.gravatar }} {{ with .Site.Params.gravatar }}
@ -40,7 +40,8 @@
<section class="social-icons"> <section class="social-icons">
{{ range $item := .Site.Params.socialIcons }} {{ range $item := .Site.Params.socialIcons }}
<a href="{{ $item.url }}" rel="me" title="{{ $item.title }}" target="_blank"> <a href="{{ $item.url }}" rel="me" title="{{ $item.title }}" target="_blank">
<i class="fab {{ $item.icon }}" aria-hidden="true"></i> <!-- i class="{{ $item.icon }}" aria-hidden="true"></i -->
<img src='/fa/svgs/{{ $item.icon }}.svg' style='width:32px; height:32px; display:inline; filter:invert(100%)'>
</a> </a>
{{ end }} {{ end }}
</section> </section>