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" . }}
|
||||
</footer>
|
||||
|
||||
<script src="{{ .Site.BaseUrl }}/js/highlight.pack.js"></script>
|
||||
<script src="{{ .Site.BaseUrl }}js/highlight.pack.js"></script>
|
||||
<script>
|
||||
hljs.initHighlightingOnLoad();
|
||||
</script>
|
||||
|
@ -23,13 +23,13 @@
|
||||
{{ if ne .Url "/" }} {{ .Title }} · {{ end }} {{ .Site.Title }}
|
||||
</title>
|
||||
|
||||
<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/font-awesome.min.css" />
|
||||
<link rel="stylesheet" href="{{ .Site.BaseUrl }}/css/github.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/font-awesome.min.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="shortcut icon" href="{{ .Site.BaseUrl }}/images/favicon.ico" />
|
||||
<link rel="apple-touch-icon" href="{{ .Site.BaseUrl }}/images/apple-touch-icon.png" />
|
||||
<link rel="shortcut icon" href="{{ .Site.BaseUrl }}images/favicon.ico" />
|
||||
<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 }}" />
|
||||
</head>
|
||||
<body>
|
||||
|
Loading…
Reference in New Issue
Block a user