1
0
mirror of https://github.com/typemill/typemill.git synced 2025-07-31 11:20:15 +02:00

Fixed footer in cyanine and updated version number

This commit is contained in:
trendschau
2023-11-16 05:40:47 +01:00
parent 8a7c7bf73d
commit 731938afdb
3 changed files with 8 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
version: '2.0.0'
version: '2.0.1'
title: 'Typemill'
author: 'Unknown'
copyright: false

View File

@@ -1,5 +1,5 @@
name: Cyanine Theme
version: 2.0.0
version: 2.0.1
description: Cyanine is a modern and flexible multi-purpose theme and the standard theme for typemill.
author: Trendschau
homepage: https://trendschau.net

View File

@@ -1,13 +1,15 @@
{% if (settings.themes.cyanine.footercolumns.footer1 or settings.themes.cyanine.footercolumns.footer2 or settings.themes.cyanine.footercolumns.footer3) %}
{% if settings.themes.cyanine.footercolumns is not empty %}
<footer class="w-100 bl br bb lh-copy">
<div class="grid-container center pv3 flex-l">
<div class="center pv3 flex-l">
{% for column,key in settings.themes.cyanine.footercolumns %}
{% if settings.themes.cyanine[column] %}
{% if settings.themes.cyanine[key] %}
<div class="w-100 pv3 ph3 ph4-l">
{{ markdown(settings.themes.cyanine[column]) }}
{{ markdown(settings.themes.cyanine[key]) }}
</div>
{% endif %}
{% endfor %}
</div>
</footer>