mirror of
https://github.com/Vimux/Binario.git
synced 2024-11-11 01:38:28 +00:00
We fixed this bug with symbol "#".
If we have a tag named C#, the url is http://localhost:1313/tags/c#/ , this url show 404 page. Symbol "#" in url is Special characters. Then we change the # to %23, then it works. See https://github.com/Vimux/Binario/issues/28 I am not sure whether there is a better solution. Fix #27
This commit is contained in:
parent
0ee5294c21
commit
5c9ab83c83
2 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@
|
||||||
<span class="entry__meta-categories meta-categories">
|
<span class="entry__meta-categories meta-categories">
|
||||||
<span class="meta-categories__list">{{ T "meta_categories" }}:
|
<span class="meta-categories__list">{{ T "meta_categories" }}:
|
||||||
{{- range $index, $category := .Params.categories }}{{ if gt $index 0 }}, {{ end }}
|
{{- range $index, $category := .Params.categories }}{{ if gt $index 0 }}, {{ end }}
|
||||||
<a class="meta-categories__link" href="{{ "categories/" | relLangURL }}{{ . | urlize | lower }}" rel="category">
|
<a class="meta-categories__link" href="{{ "categories/" replace . "#" "%23" | relLangURL }}{{ . | urlize | lower }}" rel="category">
|
||||||
{{- . -}}
|
{{- . -}}
|
||||||
</a>
|
</a>
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -2,10 +2,10 @@
|
||||||
{{- with .Param $taxo }}
|
{{- with .Param $taxo }}
|
||||||
<div class="entry__tags">
|
<div class="entry__tags">
|
||||||
{{- range . }}
|
{{- range . }}
|
||||||
{{- $url := urls.Parse (. | urlize) -}}
|
{{- $url := urls.Parse ( replace . "#" "%23" | urlize) -}}
|
||||||
{{- $path := $url.Path -}}
|
{{- $path := $url.Path -}}
|
||||||
{{- with $.Site.GetPage (printf "/%s/%s" $taxo $path) }}
|
{{- with $.Site.GetPage (printf "/%s/%s" $taxo $path ) }}
|
||||||
<a class="entry__tag btn" href="{{ .RelPermalink }}">{{ .Title }}</a>
|
<a class="entry__tag btn" href="{{ replace .RelPermalink "#" "%23"}}">{{ .Title }}</a>
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue