This repository has been archived by the owner on Dec 12, 2021. It is now read-only.
-
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.
- Loading branch information
0 parents
commit b3aa4ce
Showing
1,442 changed files
with
117,595 additions
and
0 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,30 @@ | ||
# System files | ||
# ------------ | ||
|
||
Icon | ||
.DS_Store | ||
|
||
# Temporary files | ||
# --------------- | ||
|
||
/thumbs/* | ||
!/thumbs/index.html | ||
|
||
/site/cache/* | ||
!/site/cache/index.html | ||
|
||
# -------------SECURITY------------- | ||
# NEVER publish these files via Git! | ||
# -------------SECURITY------------- | ||
|
||
# Kirby accounts | ||
# --------------- | ||
|
||
/site/accounts/* | ||
!/site/accounts/index.html | ||
|
||
# Avatars | ||
# --------------- | ||
|
||
/assets/avatars/* | ||
!/assets/avatars/index.html |
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,53 @@ | ||
# Kirby .htaccess | ||
|
||
# rewrite rules | ||
<IfModule mod_rewrite.c> | ||
|
||
# enable awesome urls. i.e.: | ||
# http://yourdomain.com/about-us/team | ||
RewriteEngine on | ||
|
||
# make sure to set the RewriteBase correctly | ||
# if you are running the site in a subfolder. | ||
# Otherwise links or the entire site will break. | ||
# | ||
# If your homepage is http://yourdomain.com/mysite | ||
# Set the RewriteBase to: | ||
# | ||
# RewriteBase /mysite | ||
|
||
# In some enviroments it's necessary to | ||
# set the RewriteBase to: | ||
# | ||
# RewriteBase / | ||
|
||
# block text files in the content folder from being accessed directly | ||
RewriteRule ^content/(.*)\.(txt|md|mdown)$ index.php [L] | ||
|
||
# block all files in the site folder from being accessed directly | ||
# except for requests to plugin assets files | ||
#RewriteRule ^assets/plugins/([a-zA-Z0-9\.\-_%=]+)/(.*)$ site/plugins/$1/assets/$2 [L,N] | ||
#RewriteCond $1 !^plugins/[a-zA-Z0-9\.\-_%=]+/assets/.* | ||
RewriteRule ^site/(.*) index.php [L] | ||
|
||
# block direct access to kirby and the panel sources | ||
RewriteRule ^(kirby|panel\/app|panel\/tests)/(.*) index.php [L] | ||
|
||
# make panel links work | ||
RewriteCond %{REQUEST_FILENAME} !-f | ||
RewriteCond %{REQUEST_FILENAME} !-d | ||
RewriteRule ^panel/(.*) panel/index.php [L] | ||
|
||
# make site links work | ||
RewriteCond %{REQUEST_FILENAME} !-f | ||
RewriteCond %{REQUEST_FILENAME} !-d | ||
RewriteRule ^(.*) index.php [L] | ||
|
||
</IfModule> | ||
|
||
# Additional recommended values | ||
# Remove comments for those you want to use. | ||
# | ||
# AddDefaultCharset UTF-8 | ||
# | ||
# php_flag short_open_tag on |
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,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2017 Martin Folkers | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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,24 @@ | ||
# Kirby Lanyon | ||
[![Release](https://img.shields.io/github/release/S1SYPHOS/kirby-lanyon.svg)](https://github.com/S1SYPHOS/kirby-lanyon/releases) [![License](https://img.shields.io/github/license/S1SYPHOS/kirby-lanyon.svg)](https://github.com/S1SYPHOS/kirby-lanyon/blob/master/LICENSE) [![Issues](https://img.shields.io/github/issues/S1SYPHOS/kirby-lanyon.svg)](https://github.com/S1SYPHOS/kirby-lanyon/issues) | ||
|
||
A Kirby port of the [Jekyll](https://jekyllrb.com) theme 'Lanyon'. | ||
|
||
**Table of contents** | ||
- [1. Getting started](#getting-started) | ||
- [2. Credits / License](#credits--license) | ||
|
||
![screenshot of the kirby-lanyon theme](screenshot.png) | ||
|
||
## Getting started | ||
Use one of the following methods to start blogging with `kirby-lanyon`: | ||
|
||
1. [Clone](https://github.com/S1SYPHOS/kirby-lanyon.git) or [download](https://github.com/S1SYPHOS/kirby-lanyon/archive/master.zip) this repository. | ||
2. Unzip / Upload the folder to your site's `root`. | ||
|
||
For more information about available features (sidebar overlay / push + open / closed on page load, reverse layout & available themes), check out the [main project](https://github.com/poole/lanyon) or view [its demo](http://lanyon.getpoole.com/) (since Kirby 'Lanyon' looks basically the same). | ||
|
||
## Credits / License | ||
This is a [port](https://en.wikipedia.org/wiki/Porting) of the [Lanyon](https://github.com/poole/lanyon) theme, which was originally developed by [@mdo](https://github.com/mdo) for Jekyll. `kirby-lanyon` is licensed under the [MIT License](LICENSE), but **using Kirby in production** requires you to [buy a license](https://getkirby.com/buy). Are you ready for the [next step](https://getkirby.com/next)? | ||
|
||
## Special Thanks | ||
I'd like to thank everybody that's making great software - you people are awesome. Also I'm always thankful for feedback and bug reports :) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Oops, something went wrong.