Skip to content
This repository was archived by the owner on Dec 12, 2021. It is now read-only.

Commit b3aa4ce

Browse files
committed
Initial commit
0 parents  commit b3aa4ce

File tree

1,442 files changed

+117595
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,442 files changed

+117595
-0
lines changed

.gitignore

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# System files
2+
# ------------
3+
4+
Icon
5+
.DS_Store
6+
7+
# Temporary files
8+
# ---------------
9+
10+
/thumbs/*
11+
!/thumbs/index.html
12+
13+
/site/cache/*
14+
!/site/cache/index.html
15+
16+
# -------------SECURITY-------------
17+
# NEVER publish these files via Git!
18+
# -------------SECURITY-------------
19+
20+
# Kirby accounts
21+
# ---------------
22+
23+
/site/accounts/*
24+
!/site/accounts/index.html
25+
26+
# Avatars
27+
# ---------------
28+
29+
/assets/avatars/*
30+
!/assets/avatars/index.html

.htaccess

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Kirby .htaccess
2+
3+
# rewrite rules
4+
<IfModule mod_rewrite.c>
5+
6+
# enable awesome urls. i.e.:
7+
# http://yourdomain.com/about-us/team
8+
RewriteEngine on
9+
10+
# make sure to set the RewriteBase correctly
11+
# if you are running the site in a subfolder.
12+
# Otherwise links or the entire site will break.
13+
#
14+
# If your homepage is http://yourdomain.com/mysite
15+
# Set the RewriteBase to:
16+
#
17+
# RewriteBase /mysite
18+
19+
# In some enviroments it's necessary to
20+
# set the RewriteBase to:
21+
#
22+
# RewriteBase /
23+
24+
# block text files in the content folder from being accessed directly
25+
RewriteRule ^content/(.*)\.(txt|md|mdown)$ index.php [L]
26+
27+
# block all files in the site folder from being accessed directly
28+
# except for requests to plugin assets files
29+
#RewriteRule ^assets/plugins/([a-zA-Z0-9\.\-_%=]+)/(.*)$ site/plugins/$1/assets/$2 [L,N]
30+
#RewriteCond $1 !^plugins/[a-zA-Z0-9\.\-_%=]+/assets/.*
31+
RewriteRule ^site/(.*) index.php [L]
32+
33+
# block direct access to kirby and the panel sources
34+
RewriteRule ^(kirby|panel\/app|panel\/tests)/(.*) index.php [L]
35+
36+
# make panel links work
37+
RewriteCond %{REQUEST_FILENAME} !-f
38+
RewriteCond %{REQUEST_FILENAME} !-d
39+
RewriteRule ^panel/(.*) panel/index.php [L]
40+
41+
# make site links work
42+
RewriteCond %{REQUEST_FILENAME} !-f
43+
RewriteCond %{REQUEST_FILENAME} !-d
44+
RewriteRule ^(.*) index.php [L]
45+
46+
</IfModule>
47+
48+
# Additional recommended values
49+
# Remove comments for those you want to use.
50+
#
51+
# AddDefaultCharset UTF-8
52+
#
53+
# php_flag short_open_tag on

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2017 Martin Folkers
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Kirby Lanyon
2+
[![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)
3+
4+
A Kirby port of the [Jekyll](https://jekyllrb.com) theme 'Lanyon'.
5+
6+
**Table of contents**
7+
- [1. Getting started](#getting-started)
8+
- [2. Credits / License](#credits--license)
9+
10+
![screenshot of the kirby-lanyon theme](screenshot.png)
11+
12+
## Getting started
13+
Use one of the following methods to start blogging with `kirby-lanyon`:
14+
15+
1. [Clone](https://github.com/S1SYPHOS/kirby-lanyon.git) or [download](https://github.com/S1SYPHOS/kirby-lanyon/archive/master.zip) this repository.
16+
2. Unzip / Upload the folder to your site's `root`.
17+
18+
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).
19+
20+
## Credits / License
21+
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)?
22+
23+
## Special Thanks
24+
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 :)
831 Bytes
Loading

assets/avatars/index.html

Whitespace-only changes.

0 commit comments

Comments
 (0)