Column filling space for Text section on app page.

This commit is contained in:
Ad5001 2022-01-24 20:39:59 +01:00
parent d37382b73f
commit cd4e6ba220
Signed by: Ad5001
GPG Key ID: EF45F9C6AFE20160
1 changed files with 2 additions and 2 deletions

View File

@ -59,12 +59,12 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
{{ .Content | markdownify }}
</div>
{{ else if eq .Type "text/image" }}
<div class="column text-center">
<div class="column col1 col1-fill text-center">
{{ .Content | markdownify }}
<img src="/img/{{ .Image }}" alt="{{ .Alt }}" loading="lazy"/>
</div>
{{ else if eq .Type "text" }}
<div class="column text-center">
<div class="column col1 col1-fill text-center">
{{ .Content | markdownify }}
</div>
{{ end }}