From b7b4d8775a8164018d65ae139f3b1821e6b6874c Mon Sep 17 00:00:00 2001
From: Regis Philibert <login@regisphilibert.com>
Date: Fri, 06 May 2022 14:27:15 +0000
Subject: [PATCH] Merge branch 'master' into demo
---
layouts/_default/summary-with-image.html | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/layouts/_default/summary-with-image.html b/layouts/_default/summary-with-image.html
index 94666db..3c94240 100644
--- a/layouts/_default/summary-with-image.html
+++ b/layouts/_default/summary-with-image.html
@@ -5,13 +5,13 @@
{{ if $featured_image }}
{{/* Trimming the slash and adding absURL make sure the image works no matter where our site lives */}}
{{ $featured_image := (trim $featured_image "/") | absURL }}
- <div class="pr3-ns mb4 mb0-ns w-100 w-40-ns">
+ <div class="{{ cond (eq $.Site.Language.LanguageDirection "rtl") "pl3-ns" "pr3-ns" }} mb4 mb0-ns w-100 w-40-ns">
<a href="{{.RelPermalink}}" class="db grow">
<img src="{{ $featured_image }}" class="img" alt="image from {{ .Title }}">
</a>
</div>
{{ end }}
- <div class="blah w-100{{ if $featured_image }} w-60-ns pl3-ns{{ end }}">
+ <div class="blah w-100{{ if $featured_image }} w-60-ns {{ cond (eq $.Site.Language.LanguageDirection "rtl") "pr3-ns" "pl3-ns" }}{{ end }}">
<h1 class="f3 fw1 athelas mt0 lh-title">
<a href="{{.RelPermalink}}" class="color-inherit dim link">
{{ .Title }}
--
Gitblit v1.10.0