Skip to content

Commit 9e7b9eb

Browse files
author
Dennis Lemm
committed
add table to richt text blocks
1 parent 63ae17c commit 9e7b9eb

File tree

4 files changed

+36
-0
lines changed

4 files changed

+36
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{{- $globals := .globals -}}
2+
{{- $context := .context -}}
3+
4+
<td>
5+
{{- partial "utils/rich-text/get-block" (dict
6+
"context" $context
7+
"globals" $globals
8+
) -}}
9+
</td>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{{- $globals := .globals -}}
2+
{{- $context := .context -}}
3+
4+
<th>
5+
{{- partial "utils/rich-text/get-block" (dict
6+
"context" $context
7+
"globals" $globals
8+
) -}}
9+
</th>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{{- $globals := .globals -}}
2+
{{- $context := .context -}}
3+
4+
<tr>
5+
{{- partial "utils/rich-text/get-block" (dict
6+
"context" $context
7+
"globals" $globals
8+
) -}}
9+
</tr>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{{- $globals := .globals -}}
2+
{{- $context := .context -}}
3+
4+
<table>
5+
{{- partial "utils/rich-text/get-block" (dict
6+
"context" $context
7+
"globals" $globals
8+
) -}}
9+
</table>

0 commit comments

Comments
 (0)