├── site
├── cache
│ └── index.html
├── plugins
│ ├── index.html
│ ├── tagcloud.php
│ └── search.php
├── panel
│ └── blueprints
│ │ ├── feed.php
│ │ ├── xmlsitemap.php
│ │ ├── error.php
│ │ ├── search.php
│ │ ├── articles.php
│ │ ├── default.php
│ │ └── article.php
├── snippets
│ ├── share.php
│ ├── navigation.php
│ ├── pagination.php
│ ├── footer.php
│ ├── disqus.php
│ ├── feed.php
│ └── header.php
├── templates
│ ├── default.php
│ ├── error.php
│ ├── feed.php
│ ├── xmlsitemap.php
│ ├── article.php
│ ├── articles.php
│ └── search.php
└── config
│ └── config.php
├── content
├── sitemap
│ └── xmlsitemap.txt
├── feed
│ └── feed.txt
├── error
│ └── error.txt
├── 03-search
│ └── search.txt
├── 01-articles
│ ├── articles.txt
│ ├── 02-an-article-with-images
│ │ └── article.txt
│ ├── 03-an-article-with-videos
│ │ └── article.txt
│ └── 01-an-article-with-text
│ │ └── article.txt
├── .htaccess
├── site.txt
└── 02-home
│ └── home.txt
├── assets
├── images
│ └── icons
│ │ ├── favicon.ico
│ │ ├── iOS
│ │ ├── apple-touch-icon-72x72.png
│ │ └── apple-touch-icon-114x114.png
│ │ └── facebook
│ │ └── facebook-icon-646x1027.jpg
├── js
│ ├── tinynav.js
│ └── jquery-1.7.1.min.js
└── css
│ ├── 1236_grid.css
│ ├── 986_grid.css
│ ├── 720_grid.css
│ └── base.css
├── robots.txt
├── humans.txt
├── index.php
├── README.md
└── .htaccess
/site/cache/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/site/plugins/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/content/sitemap/xmlsitemap.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/content/feed/feed.txt:
--------------------------------------------------------------------------------
1 | Title: Your Feed Title
--------------------------------------------------------------------------------
/content/error/error.txt:
--------------------------------------------------------------------------------
1 | Title: Oops, Not Found!
2 | ----
3 | Description: Error 404 - Not Found.
4 |
--------------------------------------------------------------------------------
/content/03-search/search.txt:
--------------------------------------------------------------------------------
1 | Title: Search
2 | ----
3 | Description: A short description text for your meta tags.
--------------------------------------------------------------------------------
/content/01-articles/articles.txt:
--------------------------------------------------------------------------------
1 | Title: Articles
2 | ----
3 | Description: A short description text for your meta tags.
--------------------------------------------------------------------------------
/assets/images/icons/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/niklausgerber/monochrome/HEAD/assets/images/icons/favicon.ico
--------------------------------------------------------------------------------
/content/.htaccess:
--------------------------------------------------------------------------------
1 |
2 |
3 | RewriteEngine on
4 | RewriteRule \.txt$ /nirvana [R=301,L]
5 |
6 |
--------------------------------------------------------------------------------
/robots.txt:
--------------------------------------------------------------------------------
1 | # www.robotstxt.org/
2 | # www.google.com/support/webmasters/bin/answer.py?hl=en&answer=156449
3 |
4 | User-Agent: *
5 | Allow: /
6 |
7 |
--------------------------------------------------------------------------------
/assets/images/icons/iOS/apple-touch-icon-72x72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/niklausgerber/monochrome/HEAD/assets/images/icons/iOS/apple-touch-icon-72x72.png
--------------------------------------------------------------------------------
/assets/images/icons/iOS/apple-touch-icon-114x114.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/niklausgerber/monochrome/HEAD/assets/images/icons/iOS/apple-touch-icon-114x114.png
--------------------------------------------------------------------------------
/assets/images/icons/facebook/facebook-icon-646x1027.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/niklausgerber/monochrome/HEAD/assets/images/icons/facebook/facebook-icon-646x1027.jpg
--------------------------------------------------------------------------------
/site/panel/blueprints/feed.php:
--------------------------------------------------------------------------------
1 | # Blueprints for the feed
2 |
3 | title: Error page
4 | files: false
5 | fields:
6 | title:
7 | label: title
8 | type: text
9 | help: The title of your feed.
10 | required: true
--------------------------------------------------------------------------------
/site/panel/blueprints/xmlsitemap.php:
--------------------------------------------------------------------------------
1 | # Blueprints for your sitemap
2 |
3 | title: Sitemap
4 | files: false
5 | fields:
6 | title:
7 | label: title
8 | type: text
9 | help: DO NOT CHANGE!
10 | required: true
--------------------------------------------------------------------------------
/site/snippets/share.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/site/snippets/navigation.php:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
--------------------------------------------------------------------------------
/site/templates/default.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | text()) ?>
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/content/site.txt:
--------------------------------------------------------------------------------
1 | Title: Your Page Title
2 | ----
3 | Author: First & Last Name | http://yourdomain.com (for meta tags)
4 | ----
5 | Copyright: © 2011-2012 Your Name, all rights reserved.
6 | ----
7 | Googleauthor: First & Last Name (for Google+ and Google Search)
8 | ----
9 | Twitter: username (your Twitter username without the @ for social sharing)
--------------------------------------------------------------------------------
/site/snippets/pagination.php:
--------------------------------------------------------------------------------
1 | hasPrevPage()): ?>
2 | « Previous
3 |
4 |
5 | hasPrevPage() && $pagination->hasNextPage()): ?>
6 | |
7 |
8 |
9 | hasNextPage()): ?>
10 | Next »
11 |
--------------------------------------------------------------------------------
/site/panel/blueprints/error.php:
--------------------------------------------------------------------------------
1 | # Blueprints for the error page
2 |
3 | title: Error page
4 | files: false
5 | fields:
6 | title:
7 | label: title
8 | type: text
9 | help: The title of the error page.
10 | required: true
11 | description:
12 | label: description
13 | type: textarea
14 | size: small
15 | help: The description of the error page.
16 | required: true
17 |
--------------------------------------------------------------------------------
/site/panel/blueprints/search.php:
--------------------------------------------------------------------------------
1 | # Blueprints for the search page
2 |
3 | title: Search page
4 | files: false
5 | fields:
6 | title:
7 | label: title
8 | type: text
9 | help: The title of the search page.
10 | required: true
11 | description:
12 | label: description
13 | type: textarea
14 | size: small
15 | help: The description of the search page.
16 | required: true
17 |
--------------------------------------------------------------------------------
/site/templates/error.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
title()) ?>
10 |
The requested page could not be found. If you're really lost, try searching for something.
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/site/panel/blueprints/articles.php:
--------------------------------------------------------------------------------
1 | # Blueprints for the articles overview page
2 |
3 | title: Articles overview page
4 | pages: true
5 | template: article
6 | sort: flip
7 | limit: 10
8 | files: false
9 | fields:
10 | title:
11 | label: title
12 | type: text
13 | help: The title of the articles overview page.
14 | required: true
15 | description:
16 | label: description
17 | type: textarea
18 | size: small
19 | help: The description of the articles overview page.
20 | required: true
21 |
--------------------------------------------------------------------------------
/site/templates/feed.php:
--------------------------------------------------------------------------------
1 | find('articles')->children()->visible()->flip()->limit(10);
7 |
8 | // this is how you embed the feed snippet with some options
9 | snippet('feed', array(
10 | 'link' => url('articles'),
11 | 'items' => $items,
12 | 'descriptionField' => 'text',
13 | 'descriptionLength' => 300
14 | ));
15 |
16 | ?>
17 |
--------------------------------------------------------------------------------
/assets/js/tinynav.js:
--------------------------------------------------------------------------------
1 | /*! http://tinynav.viljamis.com v1.03 by @viljamis */
2 | (function(a,i,g){a.fn.tinyNav=function(j){var c=a.extend({active:"selected",header:!1},j);return this.each(function(){g++;var h=a(this),d="tinynav"+g,e=".l_"+d,b=a("").addClass("tinynav "+d);if(h.is("ul,ol")){c.header&&b.append(a("").text("Navigation"));var f="";h.addClass("l_"+d).find("a").each(function(){f+='"});b.append(f);c.header||b.find(":eq("+a(e+" li").index(a(e+" li."+c.active))+")").attr("selected",!0);
3 | b.change(function(){i.location.href=a(this).val()});a(e).after(b)}})}})(jQuery,this,0);
--------------------------------------------------------------------------------
/site/panel/blueprints/default.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | # Blueprints for your Info page
4 |
5 | title: Info
6 | pages: false
7 | files: true
8 | fields:
9 | title:
10 | label: title
11 | type: text
12 | help: The title of the info page.
13 | required: true
14 | description:
15 | label: description
16 | type: textarea
17 | size: small
18 | help: Short description of your info page.
19 | required: true
20 | text:
21 | label: your content
22 | type: textarea
23 | size: large
24 | help: Your content.
25 | required: true
26 | buttons:
27 | - h1
28 | - h2
29 | - h3
30 | - bold
31 | - italic
32 | - email
33 | - link
--------------------------------------------------------------------------------
/site/templates/xmlsitemap.php:
--------------------------------------------------------------------------------
1 | ';
10 |
11 | ?>
12 |
13 | index() as $p): ?>
14 | uri(), $ignore)) continue ?>
15 |
16 | url()) ?>
17 | modified('c') ?>
18 | isHomePage()) ? 1 : number_format(0.5/$p->depth(), 1) ?>
19 |
20 |
21 |
--------------------------------------------------------------------------------
/site/panel/blueprints/article.php:
--------------------------------------------------------------------------------
1 | # Blueprints for an article
2 |
3 | title: Article
4 | pages: false
5 | files: true
6 | fields:
7 | title:
8 | label: title
9 | type: text
10 | help: The title of your article.
11 | required: true
12 | description:
13 | label: description
14 | type: textarea
15 | size: small
16 | help: Short description of your article.
17 | required: true
18 | published:
19 | label: published
20 | type: text
21 | help: Publishing date (01 January 2012).
22 | required: true
23 | tags:
24 | label: tags
25 | type: text
26 | help: Your Tags (Tag One, Tag Two, Tag 3).
27 | required: true
28 | text:
29 | label: your content
30 | type: textarea
31 | size: large
32 | help: Your content.
33 | required: true
34 | buttons:
35 | - h1
36 | - h2
37 | - h3
38 | - bold
39 | - italic
40 | - email
41 | - link
--------------------------------------------------------------------------------
/assets/css/1236_grid.css:
--------------------------------------------------------------------------------
1 | /* SimpleGrid - a fork of CSSGrid by Crowd Favorite (https://github.com/crowdfavorite/css-grid)
2 | * http://simplegrid.info
3 | * by Conor Muirhead (http://conor.cc) of Early LLC (http://earlymade.com)
4 | * License: http://creativecommons.org/licenses/MIT/ */
5 |
6 | /* Containers */
7 | body { font-size: 137.5%; }
8 | .grid{ width:1206px; }
9 |
10 | /* 6-Col Grid Sizes */
11 | .slot-0,.slot-1,.slot-2,.slot-3,.slot-4,.slot-5{ width:176px; } /* Sixths */
12 | .slot-0-1,.slot-1-2,.slot-2-3,.slot-3-4,.slot-4-5{ width:382px; } /* Thirds */
13 | .slot-0-1-2-3,.slot-1-2-3-4,.slot-2-3-4-5{ width:794px; } /* Two-Thirds */
14 | .slot-0-1-2-3-4,.slot-1-2-3-4-5{ width:1000px; } /* Five-Sixths */
15 |
16 | /* 4-Col Grid Sizes */
17 | .slot-6,.slot-7,.slot-8,.slot-9{ width:279px; } /* Quarters */
18 | .slot-6-7-8,.slot-7-8-9{ width:897px; } /* Three-Quarters */
19 |
20 | /* 6-Col/4-Col Shared Grid Sizes */
21 | .slot-0-1-2,.slot-1-2-3,.slot-2-3-4,.slot-3-4-5, .slot-6-7,.slot-7-8,.slot-8-9{ width:588px; } /* Halves */
--------------------------------------------------------------------------------
/humans.txt:
--------------------------------------------------------------------------------
1 | /* Theme */
2 | Niklaus Gerber
3 | Twitter: @niklausgerber
4 | URL: http://niklausgerber.com/
5 | From: Bern, Switzerland
6 |
7 | /* THANKS */
8 | Bastian Allgeier
9 | Twitter: @bastianallgeier
10 | URL: http://bastianallgeier.com/
11 | From: Mannheim, Germany
12 |
13 | Conor Muirhead, SimpleGrid
14 | Twitter: @conormuirhead
15 | URL: http://conor.cc/
16 | From: Santa Clara, CA, USA
17 |
18 | Dave Rupert, FitText.js
19 | Twitter: @davatron5000
20 | URL: http://daverupert.com
21 | From: Austin, TX, USA
22 |
23 | Viljami Salminen, TinyNav.js
24 | Twitter: @viljamis
25 | URL: http://tinynav.viljamis.com/
26 | From: Helsinki, Finland
27 |
28 |
29 | /* FONTS */
30 | via Google Webfonts
31 |
32 | Arvo by Anton Koovit
33 | Specimens: http://www.google.com/webfonts/specimen/Arvo
34 |
35 | Lato by Łukasz Dziedzic
36 | Specimens: http://www.google.com/webfonts/specimen/Lato
37 |
38 |
39 | /* SITE */
40 | Standards: HTML, CSS
41 | Doctype: HTML
42 | Language: english
43 | Components: jQuery
44 | Powered by: http://getkirby.com/
--------------------------------------------------------------------------------
/content/01-articles/02-an-article-with-images/article.txt:
--------------------------------------------------------------------------------
1 | Title: An article with images
2 | ----
3 | Description: A management summary of your article.
4 | ----
5 | Published: DD. Month Year
6 | ----
7 | Tags: Image, Article
8 | ----
9 | Text:
10 |
11 | Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
12 |
13 | (image: http://placehold.it/350x150 text: 300x150)
14 | (image: http://placehold.it/700x300 text: 700x300)
15 | (image: http://placehold.it/1400x600 text: 1400x600)
16 | (image: http://placehold.it/2800x1200 text: 2800x120)
--------------------------------------------------------------------------------
/assets/css/986_grid.css:
--------------------------------------------------------------------------------
1 | /* SimpleGrid - a fork of CSSGrid by Crowd Favorite (https://github.com/crowdfavorite/css-grid)
2 | * http://simplegrid.info
3 | * by Conor Muirhead (http://conor.cc) of Early LLC (http://earlymade.com)
4 | * License: http://creativecommons.org/licenses/MIT/ */
5 |
6 | /* Containers */
7 | body { font-size: 125%; }
8 | .grid{ width:966px; }
9 |
10 | /* Slots Setup */
11 | .slot-0,.slot-1,.slot-2,.slot-3,.slot-4,.slot-5,.slot-0-1,.slot-0-1-2,.slot-0-1-2-3,.slot-0-1-2-3-4,.slot-0-1-2-3-4-5,.slot-1-2,.slot-1-2-3,.slot-1-2-3-4,.slot-1-2-3-4-5,.slot-2-3,.slot-2-3-4,.slot-2-3-4-5,.slot-3-4,.slot-3-4-5,.slot-4-5,.slot-6,.slot-7,.slot-8,.slot-9,.slot-6-7,.slot-6-7-8,.slot-6-7-8-9,.slot-7-8,.slot-7-8-9,.slot-8-9{ display:inline; float:left; margin-left:30px; }
12 |
13 | /* 6-Col Grid Sizes */
14 | .slot-0,.slot-1,.slot-2,.slot-3,.slot-4,.slot-5{ width:136px; } /* Sixths */
15 | .slot-0-1,.slot-1-2,.slot-2-3,.slot-3-4,.slot-4-5{ width:302px; } /* Thirds */
16 | .slot-0-1-2-3,.slot-1-2-3-4,.slot-2-3-4-5{ width:634px; } /* Two-Thirds */
17 | .slot-0-1-2-3-4,.slot-1-2-3-4-5{ width:800px; } /* Five-Sixths */
18 |
19 | /* 4-Col Grid Sizes */
20 | .slot-6,.slot-7,.slot-8,.slot-9{ width:219px; } /* Quarters */
21 | .slot-6-7-8,.slot-7-8-9{ width:717px; } /* Three-Quarters */
22 |
23 | /* 6-Col/4-Col Shared Grid Sizes */
24 | .slot-0-1-2,.slot-1-2-3,.slot-2-3-4,.slot-3-4-5, .slot-6-7,.slot-7-8,.slot-8-9{ width:468px; } /* Halves */
--------------------------------------------------------------------------------
/site/snippets/footer.php:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
20 |
21 |
22 |
27 |
28 |
29 |
30 |
31 |
32 |
41 |
42 |