Remove redundant slashes

Since hugo 0.13, .Site.BaseUrl is normalized with a trailing slash.
This commit is contained in:
Keichi Takahashi 2015-02-25 16:04:29 +09:00
parent 120a14e1e1
commit 860dd3eb62
2 changed files with 7 additions and 7 deletions

View File

@ -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>

View File

@ -23,13 +23,13 @@
{{ if ne .Url "/" }} {{ .Title }} &middot; {{ 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>