summaryrefslogtreecommitdiff
path: root/themes/blog.jaseg.de/layouts/partials
diff options
context:
space:
mode:
authorjaseg <git@jaseg.de>2022-03-01 11:11:15 +0100
committerjaseg <git@jaseg.de>2022-03-01 11:11:15 +0100
commit7e86971cf714f3c00a1c91a397816663987f69fc (patch)
treefbf7c54d6b093113e70c745732bb0290b0a45118 /themes/blog.jaseg.de/layouts/partials
parent072b2d38e254cfa662d4d9e994e624f612d1766e (diff)
downloadblog-7e86971cf714f3c00a1c91a397816663987f69fc.tar.gz
blog-7e86971cf714f3c00a1c91a397816663987f69fc.tar.bz2
blog-7e86971cf714f3c00a1c91a397816663987f69fc.zip
Remove external resources
Diffstat (limited to 'themes/blog.jaseg.de/layouts/partials')
-rw-r--r--themes/blog.jaseg.de/layouts/partials/head_custom.html12
1 files changed, 2 insertions, 10 deletions
diff --git a/themes/blog.jaseg.de/layouts/partials/head_custom.html b/themes/blog.jaseg.de/layouts/partials/head_custom.html
index 6520ca0..cb1a57b 100644
--- a/themes/blog.jaseg.de/layouts/partials/head_custom.html
+++ b/themes/blog.jaseg.de/layouts/partials/head_custom.html
@@ -1,12 +1,4 @@
<header>
-
- <!--
- Syntax highlighting - defaults to atom light theme.
- List here: https://github.com/isagalaev/highlight.js/tree/master/src/styles
- -->
- <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/atom-one-light.min.css">
- <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
- <script>hljs.initHighlightingOnLoad();</script>
<nav>
<ul>
{{ $title := lower .Title }}
@@ -17,14 +9,14 @@
{{ range .Site.Menus.main }}
{{ $name := lower .Name }}
<li class="pull-left {{ if eq $name $title }}current{{ else if eq $section $name }}current{{ else if eq $title (pluralize $name) }}current{{ end }}">
- <a href="{{ .URL }}">~/{{ lower .Name }}</a>
+ <a href="{{ .RelPermalink }}">~/{{ lower .Name }}</a>
</li>
{{end}}
{{ range .Site.Menus.feed }}
{{ $name := lower .Name}}
<li class="pull-right">
- <a href="{{ .URL }}">~/{{ lower .Name}}</a>
+ <a href="{{ .RelPermalink }}">~/{{ lower .Name}}</a>
</li>
{{end}}