View blueprints--contact.yml
title: Contact | |
preset: page | |
icon: 📮 | |
status: | |
draft: Draft | |
listed: Published | |
fields: | |
to: |
View controller-send.php
<?php | |
return function($site, $pages, $page) { | |
$alert = null; | |
$messages = null; | |
if(r::is('post') && get('submit')) { | |
if(!empty(get('subject'))) { | |
// lets tell the bot that everything is ok |
View blueprints--contact.yml
title: Contact | |
pages: false | |
fields: | |
title: | |
label: Page | |
type: text | |
width: 1/4 | |
subtitle: | |
label: Title | |
type: text |
View cart.php
<?php snippet('header') ?> | |
<?php if($count > 0): ?> | |
<main id="cart" class="main cf" role="main"> | |
<?php if(param('checkout') == 'cheque'): ?> | |
<!-- Formulaire --> | |
View header.php
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width,initial-scale=1.0"> | |
<title><?php echo $site->title()->html() ?> | <?php echo $page->title()->html() ?></title> | |
<meta name="description" content="<?php echo $site->description()->html() ?>"> | |
<meta name="keywords" content="<?php echo $site->keywords()->html() ?>"> |
View or.php
<meta name="description" content="<?php echo $page->description()->or($site->description()) ?>"> |
View donate.js
function getEventTarget(e) { | |
e = e || window.event; | |
return e.target || e.srcElement; | |
} | |
function removeClass (argument) { | |
for (var i = argument.length - 1; i >= 0; i--) { | |
argument[i].className = "" | |
} | |
} |
View submodules
git submodule add https://github.com/getkirby/kirby.git | |
git submodule add https://github.com/getkirby/panel.git | |
git submodule update --init --recursive |
View blog.php
<?php | |
$blogs = $pages->findByUID('blog1', 'blog2'); | |
$articles = $blogs->children()->sortBy('date', 'desc'); | |
// if you want you can add a limit or pagination to that set of articles | |
// afterwards just use a regular foreach loop to go through them all. | |
?> |
NewerOlder