Merge pull request #23 from kamijin-fanta/fix-path

fix path on relative base-url
This commit is contained in:
kimcc 2021-06-17 22:55:46 -05:00 committed by GitHub
commit 3852731b02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@
<!-- Display tags -->
{{if .Params.tags}}
{{ range .Params.tags }}
<a class="tag" href="/tags/{{ . | urlize }}">#{{.}}</a>
<a class="tag" href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">#{{.}}</a>
{{ end }}
{{ end }}
</div>
@ -41,7 +41,7 @@
<p>{{ i18n "page" }} {{ $paginator.PageNumber}} {{ i18n "of" }} {{ $paginator.TotalPages }}</p>
<div class="paginator-group">
{{ if $paginator.HasPrev }}
<a class="color-link" href="{{ $paginator.Prev.URL | relLangURL }}">
<a class="color-link" href="{{ $paginator.Prev.URL }}">
<svg width="13px" height="9px" viewBox="0 0 13 9" version="1.1" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink">
<g class="color-arrow" fill="#63BDA2" fill-rule="nonzero">
<polygon id="Path" points="1.75929935 4.50000282 5.3292523 7.62371165 4.6707477 8.37628835 0.240700645 4.49999718 4.67081049 0.623709205 5.32930951 1.37629079"></polygon>
@ -52,7 +52,7 @@
</a>
{{ end }}
{{ if $paginator.HasNext }}
<a class="color-link older" href="{{ $paginator.Next.URL | relLangURL }}">
<a class="color-link older" href="{{ $paginator.Next.URL }}">
{{ i18n "older" }}
<svg width="13px" height="9px" viewBox="0 0 13 9" version="1.1" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink">
<g class="color-arrow" fill="#63BDA2" fill-rule="nonzero">

View File

@ -3,7 +3,7 @@
{{ partial "header.html" . }}
<div class="nav-menu">
{{ range .Site.Menus.main }}
<a class="color-link nav-link" href="{{ .URL | relLangURL }}">{{ .Name }}</a>
<a class="color-link nav-link" href="{{ .URL }}">{{ .Name }}</a>
{{ end }}
<a class="color-link nav-link" href="{{ .Site.RSSLink }}" target="_blank" rel="noopener" type="application/rss+xml">RSS</a>
</div>