1
0
mirror of https://github.com/typemill/typemill.git synced 2025-08-13 17:44:06 +02:00

Version 1.5.1: File restrictions, download controller, noindex, fix youtube, cyanine third teaser

This commit is contained in:
trendschau
2021-11-01 21:11:59 +01:00
parent 2e12e184d3
commit 7d662daf86
16 changed files with 422 additions and 122 deletions

View File

@@ -1,5 +1,5 @@
name: Cyanine Theme
version: 1.1.8
version: 1.1.9
description: Cyanine is a modern and flexible multi-purpose theme and the standard theme for typemill.
author: Trendschau
homepage: https://trendschau.net
@@ -138,6 +138,20 @@ forms:
type: text
label: Teaser 2 Label
fieldsize: half
teaser3title:
type: text
label: Teaser 3 Title
teaser3text:
type: text
label: Teaser 3 Text
teaser3link:
type: text
label: Teaser 3 Link
fieldsize: half
teaser3label:
type: text
label: Teaser 3 Label
fieldsize: half
landingpageContrast:
type: fieldset

View File

@@ -1,16 +1,27 @@
<section class="landingpageteaser w-100 dib tc bl br bb">
<div class="mw7 pv6 ph3 center flex-m flex-l justify-between">
<div class="mw5 center ml0-l mr0-l mv4 dib">
<h2 class="f2">{{ settings.themes.cyanine.teaser1title }}</h2>
<p class="f5 f4-ns fw3 lh-copy">{{ settings.themes.cyanine.teaser1text }}</p>
<a href="{{ settings.themes.cyanine.teaser1link }}" class="button link dim w-100 dib pa3 ma1 ba">{{ settings.themes.cyanine.teaser1label }}</a>
</div>
<div class="mw5 center ml0-l mr0-l mv4 dib">
<h2 class="f2">{{ settings.themes.cyanine.teaser2title }}</h2>
<p class="f5 f4-ns fw3 lh-copy">{{ settings.themes.cyanine.teaser2text }}</p>
<a href="{{ settings.themes.cyanine.teaser2link }}" class="button link dim w-100 dib pa3 ma1 ba">{{ settings.themes.cyanine.teaser2label }}</a>
</div>
<div class="mw8 pv6 ph3 center flex-m flex-l justify-around">
{% if settings.themes.cyanine.teaser1title %}
<div class="mw5 center ml0-l mr0-l mv4 dib">
<h2 class="f2">{{ settings.themes.cyanine.teaser1title }}</h2>
<p class="f5 f4-ns fw3 lh-copy">{{ settings.themes.cyanine.teaser1text }}</p>
<a href="{{ settings.themes.cyanine.teaser1link }}" class="button link dim w-100 dib pa3 ma1 ba">{{ settings.themes.cyanine.teaser1label }}</a>
</div>
{% endif %}
{% if settings.themes.cyanine.teaser2title %}
<div class="mw5 center ml0-l mr0-l mv4 dib">
<h2 class="f2">{{ settings.themes.cyanine.teaser2title }}</h2>
<p class="f5 f4-ns fw3 lh-copy">{{ settings.themes.cyanine.teaser2text }}</p>
<a href="{{ settings.themes.cyanine.teaser2link }}" class="button link dim w-100 dib pa3 ma1 ba">{{ settings.themes.cyanine.teaser2label }}</a>
</div>
{% endif %}
{% if settings.themes.cyanine.teaser3title %}
<div class="mw5 center ml0-l mr0-l mv4 dib">
<h2 class="f2">{{ settings.themes.cyanine.teaser3title }}</h2>
<p class="f5 f4-ns fw3 lh-copy">{{ settings.themes.cyanine.teaser3text }}</p>
<a href="{{ settings.themes.cyanine.teaser3link }}" class="button link dim w-100 dib pa3 ma1 ba">{{ settings.themes.cyanine.teaser3label }}</a>
</div>
{% endif %}
</div>
</section>

View File

@@ -9,6 +9,10 @@
<meta name="author" content="{{ metatabs.meta.author }}" />
<meta name="generator" content="TYPEMILL" />
<meta name="msapplication-TileColor" content="#F9F8F6" />
{% if metatabs.meta.noindex %}
<meta name="robots" content="noindex">
{% endif %}
{% if favicon %}
<meta name="msapplication-TileColor" content="#F9F8F6" />