Processwire - Themes / Templates
Aus Wikizone
Version vom 22. März 2017, 17:29 Uhr von 37.49.32.84 (Diskussion)
Links
- Processwire - Template from Scratch
Theme Strategien
Basic Theme
config.php
<?php
...
$config->debug = false;
$config->sessionFingerprint = true;
$config->prependTemplateFile = '_init.php';
$config->appendTemplateFile = '_main.php';
$config->imageSizerOptions = array(
'upscaling' => true, // upscale if necessary to reach target size?
'cropping' => true, // crop if necessary to reach target size?
'autoRotation' => true, // automatically correct orientation?
'sharpening' => 'soft', // sharpening: none | soft | medium | strong
'quality' => 90, // quality: 1-100 where higher is better but bigger
);
templates/
_func.inc _init.inc _main.inc
templates/partials
foot.inc head.inc
Delayed Output
config.php templates/ _func.inc _init.inc _main.inc templates/partials foot.inc head.incAJAX Driven Theme
3.x Strategie
Module
Processwire - Writing Modules