diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 194b19a95a5b0e98d3e02eb4c697754b5d6a3ab5..6de94f0ba315bdbe424bc042b0b1aec03d6d3e71 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -17,21 +17,21 @@ <link type="text/css" rel="stylesheet" - href="{{ .Site.BaseURL }}css/print.css" + href="{{ `css/print.css` | relURL }}" media="print"> <link type="text/css" rel="stylesheet" - href="{{ .Site.BaseURL }}css/poole.css"> + href="{{ `css/poole.css` | relURL }}"> <link type="text/css" rel="stylesheet" - href="{{ .Site.BaseURL }}css/hyde.css"> + href="{{ `css/hyde.css` | relURL }}"> {{ partial "theme-color.html" . }} {{ range $.Site.Params.customCss -}} - <link type="text/css" rel="stylesheet" href="{{ $.Site.BaseURL }}{{ . }}"> + <link type="text/css" rel="stylesheet" href="{{ . | relURL }}"> {{- end}} <link rel="stylesheet" @@ -67,7 +67,7 @@ crossorigin="anonymous"></script> {{ range $.Site.Params.customJs -}} - <script src="{{ $.Site.BaseURL }}{{ . }}"></script> + <script src="{{ . | relURL }}"></script> {{- end}} {{ template "_internal/google_analytics_async.html" . }} diff --git a/layouts/index.html b/layouts/index.html index 01b82534b3a8f9a7bbde0fa9b2cdcf72373549b4..3fc858b07fa4a6bf1db802ac1b7c24ff9773572b 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -19,7 +19,7 @@ {{ if .Truncated }} <div class="read-more-link"> - <a href="{{ .RelPermalink }}">Read More</a> + <a href="{{ .Permalink }}">Read More</a> </div> {{ end }} </article> diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html index 5ce773f66f53af5e484b49f54628e559aeaae8b7..8384905dfbeb51400e0959f789a542dfc499e880 100644 --- a/layouts/partials/sidebar.html +++ b/layouts/partials/sidebar.html @@ -8,7 +8,7 @@ {{ else }} {{ with .Site.Params.profilePicture }} <div class="author-image"> - <img src="{{ $.Site.BaseURL }}{{ . }}" class="img-circle img-headshot center" alt="Profile Picture"> + <img src="{{ . | relURL }}" class="img-circle img-headshot center" alt="Profile Picture"> </div> {{ end }} {{ end }} @@ -27,7 +27,7 @@ </li> {{ range .Site.Menus.main -}} <li> - <a href="{{ .URL }}"> {{ .Name }} </a> + <a href="{{ .URL }}">{{ .Name }}</a> </li> {{- end }} </ul>