forked from typemill/typemill
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 1.4.6 Collapse Navigation, standard content, landingpage intr…
…o and fixes
- Loading branch information
1 parent
14ea7c7
commit 33a0bbf
Showing
19 changed files
with
76 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.landingpageintro h1{ | ||
display: inline-block; | ||
background: white; | ||
padding: 4px 10px; | ||
margin: 5px; | ||
} | ||
|
||
.landingpageintro p{ | ||
display: inline; | ||
background: white; | ||
line-height: 2.1rem; | ||
padding: 6px 4px 4px; | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,33 @@ | ||
<section class="landingpageintro w-100 dib tc bt bl br bb"> | ||
|
||
<div class="mw7 pb7 ph3 center"> | ||
<header class="mt6"> | ||
{% if logo %} | ||
<img src="{{ base_url }}/{{ logo }}" class="logo-image"/> | ||
{% elseif settings.themes.cyanine.introTitle %} | ||
<h1 class="f-large f-headline-ns lh-title mv2 pt5-ns">{{ settings.themes.cyanine.introTitle }}</h1> | ||
{% else %} | ||
<h1 class="f-large f-headline-ns lh-title mv2 pt5-ns">{{ title }}</h1> | ||
{% endif %} | ||
</header> | ||
<div class="cover bg-left bg-center-l" {% if settings.themes.cyanine.introImage %}style="background-image: url({{image.img_url}});background-color:rgba(255,255,255,{{settings.themes.cyanine.introImageOpacity|default('0.8')}});background-blend-mode: lighten;" {% endif%} > | ||
|
||
<div class="f5 f4-ns fw3 lh-copy"> | ||
{% if settings.themes.cyanine.introMarkdown %} | ||
{{ markdown(settings.themes.cyanine.introMarkdown) }} | ||
{% else %} | ||
{{ content }} | ||
{% endif %} | ||
</div> | ||
<div class="mw7 pb7 pt6 ph3 center"> | ||
<div class="introbg pa4"> | ||
<header> | ||
{% if logo %} | ||
<img src="{{ base_url }}/{{ logo }}" class="logo-image"/> | ||
{% elseif settings.themes.cyanine.introTitle %} | ||
<h1 class="f-large lh-title mv2">{{ settings.themes.cyanine.introTitle }}</h1> | ||
{% else %} | ||
<h1 class="f-large lh-title mv2">{{ title }}</h1> | ||
{% endif %} | ||
</header> | ||
|
||
{% if settings.themes.cyanine.introButtonLink %} | ||
<div class="f5 f4-ns fw3 lh-copy"> | ||
{% if settings.themes.cyanine.introMarkdown %} | ||
{{ markdown(settings.themes.cyanine.introMarkdown) }} | ||
{% else %} | ||
{{ content }} | ||
{% endif %} | ||
</div> | ||
|
||
<a class="button link dim ph4 pv3 mt3 ba dib" href="{{ settings.themes.cyanine.introButtonLink }}">{{ settings.themes.cyanine.introButtonLabel }}</a> | ||
{% if settings.themes.cyanine.introButtonLink %} | ||
|
||
{% endif %} | ||
<a class="button link dim ph4 pv3 mt3 ba dib" href="{{ settings.themes.cyanine.introButtonLink }}">{{ settings.themes.cyanine.introButtonLabel }}</a> | ||
|
||
</div> | ||
|
||
{% endif %} | ||
</div> | ||
</div> | ||
</div> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters