Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Kirby | 1,055 | 62 | 87 | 4 hours ago | 193 | September 07, 2023 | 123 | other | PHP | |
Kirby's core application folder | ||||||||||
Kirby Builder | 406 | 2 | a year ago | 15 | November 18, 2020 | 17 | Vue | |||
A site builder extension for Kirby CMS | ||||||||||
Kirby Focus | 175 | 1 | a year ago | 8 | January 16, 2022 | 2 | mit | PHP | ||
Better image cropping for Kirby CMS | ||||||||||
Kirby Visual Markdown | 174 | 6 years ago | 23 | gpl-3.0 | JavaScript | |||||
Visual Markdown Editor for Kirby CMS 2 | ||||||||||
Starterkit | 161 | 2 months ago | 66 | March 08, 2023 | PHP | |||||
Kirby's sample site – the easiest way to get started with Kirby | ||||||||||
Kirby Secrets | 130 | 6 years ago | 3 | |||||||
Unofficial documentation for Kirby CMS. It's is NOT maintained by the Kirby crew. | ||||||||||
Kirby3 Static Site Generator | 130 | a month ago | 26 | August 16, 2022 | mit | PHP | ||||
Static site generator plugin for Kirby 3. With this plugin you can create a directory with assets, media and static html files generated from your pages. The result is an even faster site with less potential vulnerabilities. | ||||||||||
Kql | 125 | 6 months ago | 1 | February 12, 2021 | 4 | mit | PHP | |||
Kirby's Query Language API combines the flexibility of Kirby's data structures, the power of GraphQL and the simplicity of REST. | ||||||||||
Woods | 117 | 1 | 1 | 6 years ago | 11 | April 21, 2017 | 2 | other | JavaScript | |
Node.js file based CMS inspired by Kirby & Stacey. | ||||||||||
Kirby Staticbuilder | 109 | 1 | 3 years ago | 13 | November 12, 2017 | 5 | mit | PHP | ||
Static HTML exporter for Kirby CMS (v2 only) |
The missing Mandrill mail driver for the awesome Kirby CMS by Bastian Allgeier.
If not already existing, add a new plugins
folder to your site
directory. Then copy or link this repositories whole content in a new kirby-mandrill-driver
folder there. Afterwards, your directory structure should look like this:
site/
plugins/
kirby-mandrill-driver/
kirby-mandrill-driver.php
...
If you are an advanced user and know your way around Git and you already use Git to manage you project, install this plugin by adding it as a Git submodule:
$ cd your/project/root
$ git submodule add https://github.com/felixtriller/kirby-mandrill-driver.git site/plugins/kirby-mandrill-driver
To update this plugin, all you need to do is to run these two Git commands:
$ cd your/project/root
$ git submodule update --remote site/plugins/kirby-mandrill-driver
$ git commit -am 'Updating Mandrill driver.'
$email = new Email(array(
'to' => '[email protected]',
'from' => '[email protected]',
'subject' => 'Yay, Kirby sends mails',
'body' => 'Hey, this is a test email!',
'service' => 'mandrill',
'options' => array(
'key' => 'YOUR-MANDRILL-API-KEY'
)
));
if ($email->send()) {
echo 'The email has been sent via Mandrill';
} else {
echo $email->error()->message();
}
See the Kirby docs for further details.