{@html article?.content?.types?.details}
{/if}
- {:else if article?.layout?.variant === "left"}
+ {:else if article?.layout?.variant === "right"}
+
+
+ {#if article?.content?.title}
+
{@html article?.content?.title}
+ {/if}
+
+ {#if article?.content?.subtitle}
+
{@html article?.content?.subtitle}
+ {/if}
+
+ {#if article?.content?.types?.teaser}
+
{@html article?.content?.types?.teaser}
+ {/if}
+
+ {#if article?.content?.types?.details && showDetails}
+
{@html article?.content?.types?.details}
+ {/if}
+
+
+ {#if article?.content?.types?.media?.files?.length}
+
+ {/if}
+
+
+ {:else if article?.layout?.variant === "bottom"}
+ {#if article?.content?.title}
+ {@html article?.content?.title}
+ {/if}
+
+ {#if article?.content?.subtitle}
+ {@html article?.content?.subtitle}
+ {/if}
+
+ {#if article?.content?.types?.teaser}
+ {@html article?.content?.types?.teaser}
+ {/if}
+
+ {#if article?.content?.types?.details && showDetails}
+ {@html article?.content?.types?.details}
+ {/if}
+ {#if article?.content?.types?.media?.files?.length}
+
+ {/if}
+ {:else if article?.layout?.variant === "left" || article?.layout?.variant === "default"}
{#if article?.content?.types?.media?.files?.length}
diff --git a/src/css/theme-2022/components/article.less b/src/css/theme-2022/components/article.less
index 06d9c7b..f9ce54b 100644
--- a/src/css/theme-2022/components/article.less
+++ b/src/css/theme-2022/components/article.less
@@ -1,8 +1,7 @@
article,
.article {
overflow-wrap: anywhere;
- background: rgba(0, 0, 0, 0.03);
- padding: @space-md;
+ border: 1px dashed @on-background;
& ~ article,
& ~ .article {