Remove redundant slashes
Since hugo 0.13, .Site.BaseUrl is normalized with a trailing slash.
This commit is contained in:
parent
120a14e1e1
commit
860dd3eb62
@ -6,7 +6,7 @@
|
|||||||
{{ partial "link.html" . }}
|
{{ partial "link.html" . }}
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<script src="{{ .Site.BaseUrl }}/js/highlight.pack.js"></script>
|
<script src="{{ .Site.BaseUrl }}js/highlight.pack.js"></script>
|
||||||
<script>
|
<script>
|
||||||
hljs.initHighlightingOnLoad();
|
hljs.initHighlightingOnLoad();
|
||||||
</script>
|
</script>
|
||||||
|
@ -23,13 +23,13 @@
|
|||||||
{{ if ne .Url "/" }} {{ .Title }} · {{ end }} {{ .Site.Title }}
|
{{ if ne .Url "/" }} {{ .Title }} · {{ end }} {{ .Site.Title }}
|
||||||
</title>
|
</title>
|
||||||
|
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseUrl }}/css/bootstrap.min.css" />
|
<link rel="stylesheet" href="{{ .Site.BaseUrl }}css/bootstrap.min.css" />
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseUrl }}/css/main.css" />
|
<link rel="stylesheet" href="{{ .Site.BaseUrl }}css/main.css" />
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseUrl }}/css/font-awesome.min.css" />
|
<link rel="stylesheet" href="{{ .Site.BaseUrl }}css/font-awesome.min.css" />
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseUrl }}/css/github.css" />
|
<link rel="stylesheet" href="{{ .Site.BaseUrl }}css/github.css" />
|
||||||
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400" type="text/css">
|
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400" type="text/css">
|
||||||
<link rel="shortcut icon" href="{{ .Site.BaseUrl }}/images/favicon.ico" />
|
<link rel="shortcut icon" href="{{ .Site.BaseUrl }}images/favicon.ico" />
|
||||||
<link rel="apple-touch-icon" href="{{ .Site.BaseUrl }}/images/apple-touch-icon.png" />
|
<link rel="apple-touch-icon" href="{{ .Site.BaseUrl }}images/apple-touch-icon.png" />
|
||||||
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
|
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
Loading…
Reference in New Issue
Block a user