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
$border-width: 1px; | |
$pagination-border-width: $border-width; | |
$pagination-margin-start: ($pagination-border-width * -1); | |
@if $pagination-margin-start == (calc($pagination-border-width * -1)) { | |
.selector { | |
color: green; | |
} | |
} @else { | |
.selector { |
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
--- | |
Subject: [Your Company], checking in | |
--- | |
Hi {customer name}, | |
I saw you just became a customer of ours—thank you! My name is [your first name], and I’m trying to make our setup process better. I’d love to get your personal take on it. | |
Is there any chance we could schedule a quick 15 minute chat sometime in the next couple days? |
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
<? | |
$list = $page->children()->paginate(10); | |
$pagination = $list->pagination(); | |
?> | |
<ul> | |
<? foreach($list as $item): ?> | |
<li><!-- item html --></li> |
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
<?php | |
class kirbytextExtended extends kirbytext { | |
function __construct($text, $markdown=true) { | |
parent::__construct($text, $markdown); | |
// define custom tags | |
$this->addTags('figure'); |