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:
@@ -1,4 +1,4 @@
|
||||
version: '2.0.0'
|
||||
version: '2.0.1'
|
||||
title: 'Typemill'
|
||||
author: 'Unknown'
|
||||
copyright: false
|
||||
|
@@ -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
|
||||
|
@@ -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>
|
||||
|
Reference in New Issue
Block a user