diff options
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/_default/baseof.html | 6 | ||||
-rw-r--r-- | layouts/shortcodes/img-pull-right.html | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index c473262..06eed60 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -20,7 +20,7 @@ <meta property="og:title" content="{{ .Page.Title }}"> <meta property="og:type" content="website"> <meta property="og:url" content="{{ .Permalink }}"> - {{- $imageUrl := default "logo.png" .Params.image }} + {{- $imageUrl := default "logos/right.png" .Params.image }} {{- $image := resources.Get $imageUrl }} <meta property="og:image" content="{{ $image.Permalink }}"> <meta property="og:description" content="{{ .Params.Abstract | default .Site.Params.DefaultDescription}}"> @@ -45,10 +45,10 @@ <div class="the-site"> <aside class="left-column"> <a href="/"> - {{ $logo := resources.Get "logo.png" }} + {{ $logo := resources.Get "logos/right.png" }} {{ $logo1x := $logo.Resize "x160 webpn" }} {{ $logo2x := $logo.Resize "x310 webpn" }} - <div id="logo"> + <div class="logo"> <img alt="logo" src="{{ $logo.Permalink }}" diff --git a/layouts/shortcodes/img-pull-right.html b/layouts/shortcodes/img-pull-right.html index 4688b59..e57964d 100644 --- a/layouts/shortcodes/img-pull-right.html +++ b/layouts/shortcodes/img-pull-right.html @@ -10,7 +10,7 @@ src="{{ $img1x.Permalink }}" srcset=" {{ $img1x.RelPermalink }} 1x, - {{ $img2x.RelPermalink }} 2x, + {{ $img2x.RelPermalink }} 2x " width="{{ $img1x.Width }}" height="{{ $img1x.Height }}" |