mirror of
https://github.com/carsonip/hugo-theme-minos
synced 2025-12-29 19:09:50 -08:00
Fix double slash
This commit is contained in:
@@ -12,7 +12,9 @@
|
||||
{{ $data := .Data }}
|
||||
<ul>
|
||||
{{ range $key, $value := .Data.Terms.Alphabetical }}
|
||||
<li><a href="{{ $site.BaseURL }}/{{ $data.Plural }}/{{ $value.Name | urlize }}">{{ $value.Name }}</a>({{ $value.Count }})</li>
|
||||
<li>
|
||||
<a href="{{ $site.LanguagePrefix }}/{{ $data.Plural }}/{{ $value.Name | urlize }}">{{ $value.Name }}</a>({{ $value.Count }})
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -10,10 +10,10 @@
|
||||
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
|
||||
<link rel="shortcut icon" href="/favicon.png">
|
||||
|
||||
<link href="{{ .Site.BaseURL }}/webfonts/ptserif/main.css" rel='stylesheet' type='text/css'>
|
||||
<link href="{{ .Site.BaseURL }}/webfonts/source-code-pro/main.css" rel="stylesheet" type="text/css">
|
||||
<link href="{{ .Site.BaseURL }}webfonts/ptserif/main.css" rel='stylesheet' type='text/css'>
|
||||
<link href="{{ .Site.BaseURL }}webfonts/source-code-pro/main.css" rel="stylesheet" type="text/css">
|
||||
|
||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/style.css">
|
||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/style.css">
|
||||
|
||||
<link href="http://gmpg.org/xfn/11" rel="profile">
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
|
||||
Reference in New Issue
Block a user