├── sample ├── site │ ├── cache │ │ └── index.html │ ├── accounts │ │ └── index.html │ ├── plugins │ │ └── index.html │ ├── blueprints │ │ ├── default.php │ │ ├── home.php │ │ ├── error.php │ │ ├── projects.php │ │ ├── project.php │ │ └── site.php │ ├── templates │ │ ├── default.php │ │ ├── projects.php │ │ ├── home.php │ │ └── project.php │ ├── snippets │ │ ├── footer.php │ │ ├── menu.php │ │ ├── projects.php │ │ └── header.php │ └── config │ │ └── config.php ├── .DS_Store ├── content │ ├── error │ │ └── error.txt │ ├── 1-about │ │ ├── about.jpg │ │ └── about.txt │ ├── 2-projects │ │ ├── 1-project-a │ │ │ ├── green.jpg │ │ │ ├── forrest.jpg │ │ │ ├── the-sea.jpg │ │ │ └── project.txt │ │ ├── 2-project-b │ │ │ ├── road.jpg │ │ │ ├── mountains.jpg │ │ │ └── project.txt │ │ ├── 3-project-c │ │ │ ├── hightide.jpg │ │ │ ├── kermit-the-fog.jpg │ │ │ └── project.txt │ │ └── projects.txt │ ├── site.txt │ ├── 3-contact │ │ └── contact.txt │ └── home │ │ └── home.txt ├── panel │ ├── app │ │ ├── views │ │ │ ├── files │ │ │ │ └── delete.php │ │ │ ├── pages │ │ │ │ ├── delete.php │ │ │ │ ├── toggle.php │ │ │ │ ├── add.php │ │ │ │ ├── url.php │ │ │ │ └── edit.php │ │ │ ├── users │ │ │ │ ├── delete.php │ │ │ │ └── index.php │ │ │ ├── avatars │ │ │ │ └── delete.php │ │ │ ├── error │ │ │ │ ├── index.php │ │ │ │ └── modal.php │ │ │ ├── auth │ │ │ │ ├── login.php │ │ │ │ └── block.php │ │ │ ├── installation │ │ │ │ └── index.php │ │ │ ├── search │ │ │ │ └── results.php │ │ │ ├── dashboard │ │ │ │ └── index.php │ │ │ └── options │ │ │ │ └── index.php │ │ ├── translations │ │ │ ├── ca │ │ │ │ └── package.json │ │ │ ├── cs │ │ │ │ └── package.json │ │ │ ├── da │ │ │ │ └── package.json │ │ │ ├── de │ │ │ │ └── package.json │ │ │ ├── en │ │ │ │ └── package.json │ │ │ ├── fa │ │ │ │ └── package.json │ │ │ ├── fi │ │ │ │ └── package.json │ │ │ ├── fr │ │ │ │ └── package.json │ │ │ ├── it │ │ │ │ └── package.json │ │ │ ├── ja │ │ │ │ └── package.json │ │ │ ├── pl │ │ │ │ └── package.json │ │ │ ├── ro │ │ │ │ └── package.json │ │ │ ├── tr │ │ │ │ └── package.json │ │ │ ├── bg │ │ │ │ └── package.json │ │ │ ├── hu │ │ │ │ └── package.json │ │ │ ├── nb │ │ │ │ └── package.json │ │ │ ├── nl │ │ │ │ └── package.json │ │ │ ├── sv_SE │ │ │ │ └── package.json │ │ │ ├── id │ │ │ │ └── package.json │ │ │ ├── zh_CN │ │ │ │ └── package.json │ │ │ ├── zh_TW │ │ │ │ └── package.json │ │ │ ├── es_ES │ │ │ │ └── package.json │ │ │ ├── pt_PT │ │ │ │ └── package.json │ │ │ ├── ru │ │ │ │ └── package.json │ │ │ ├── es_419 │ │ │ │ └── package.json │ │ │ ├── pt_BR │ │ │ │ └── package.json │ │ │ └── ar │ │ │ │ └── package.json │ │ ├── fields │ │ │ ├── structure │ │ │ │ ├── views │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── add.php │ │ │ │ │ └── update.php │ │ │ │ ├── forms │ │ │ │ │ ├── add.php │ │ │ │ │ ├── update.php │ │ │ │ │ └── delete.php │ │ │ │ ├── template.php │ │ │ │ ├── styles │ │ │ │ │ ├── items.php │ │ │ │ │ └── table.php │ │ │ │ └── assets │ │ │ │ │ ├── js │ │ │ │ │ └── structure.js │ │ │ │ │ └── css │ │ │ │ │ └── structure.css │ │ │ ├── tel │ │ │ │ └── tel.php │ │ │ ├── text │ │ │ │ ├── assets │ │ │ │ │ ├── css │ │ │ │ │ │ └── counter.css │ │ │ │ │ └── js │ │ │ │ │ │ └── counter.js │ │ │ │ └── text.php │ │ │ ├── hidden │ │ │ │ └── hidden.php │ │ │ ├── line │ │ │ │ └── line.php │ │ │ ├── filename │ │ │ │ └── filename.php │ │ │ ├── url │ │ │ │ └── url.php │ │ │ ├── info │ │ │ │ └── info.php │ │ │ ├── headline │ │ │ │ ├── assets │ │ │ │ │ └── css │ │ │ │ │ │ └── headline.css │ │ │ │ └── headline.php │ │ │ ├── textarea │ │ │ │ ├── controller.php │ │ │ │ ├── forms │ │ │ │ │ ├── email.php │ │ │ │ │ └── link.php │ │ │ │ ├── views │ │ │ │ │ ├── email.php │ │ │ │ │ └── link.php │ │ │ │ ├── assets │ │ │ │ │ └── js │ │ │ │ │ │ └── editor.js │ │ │ │ └── textarea.php │ │ │ ├── page │ │ │ │ └── page.php │ │ │ ├── user │ │ │ │ └── user.php │ │ │ ├── title │ │ │ │ └── title.php │ │ │ ├── toggle │ │ │ │ └── toggle.php │ │ │ ├── email │ │ │ │ └── email.php │ │ │ ├── password │ │ │ │ └── password.php │ │ │ ├── radio │ │ │ │ └── radio.php │ │ │ ├── input │ │ │ │ └── input.php │ │ │ ├── number │ │ │ │ └── number.php │ │ │ ├── checkboxes │ │ │ │ └── checkboxes.php │ │ │ ├── date │ │ │ │ ├── assets │ │ │ │ │ └── js │ │ │ │ │ │ └── date.js │ │ │ │ └── date.php │ │ │ ├── checkbox │ │ │ │ └── checkbox.php │ │ │ ├── tags │ │ │ │ └── tags.php │ │ │ ├── time │ │ │ │ └── time.php │ │ │ ├── select │ │ │ │ └── select.php │ │ │ └── inputlist │ │ │ │ └── inputlist.php │ │ ├── topbars │ │ │ ├── error.php │ │ │ └── user.php │ │ ├── snippets │ │ │ ├── meta.php │ │ │ ├── search.php │ │ │ ├── pages │ │ │ │ ├── sidebar │ │ │ │ │ ├── file.php │ │ │ │ │ ├── subpage.php │ │ │ │ │ ├── files.php │ │ │ │ │ └── subpages.php │ │ │ │ └── sidebar.php │ │ │ ├── uploader.php │ │ │ ├── languages.php │ │ │ ├── breadcrumb.php │ │ │ ├── menu.php │ │ │ ├── pagination.php │ │ │ └── subpages │ │ │ │ └── subpage.php │ │ ├── widgets │ │ │ ├── pages │ │ │ │ ├── pages.html.php │ │ │ │ └── pages.php │ │ │ ├── site │ │ │ │ ├── site.php │ │ │ │ └── site.html.php │ │ │ ├── history │ │ │ │ ├── history.php │ │ │ │ └── history.html.php │ │ │ ├── license │ │ │ │ ├── license.html.php │ │ │ │ └── license.php │ │ │ └── account │ │ │ │ ├── account.html.php │ │ │ │ └── account.php │ │ ├── controllers │ │ │ ├── dashboard.php │ │ │ ├── search.php │ │ │ ├── assets.php │ │ │ ├── autocomplete.php │ │ │ ├── error.php │ │ │ ├── options.php │ │ │ ├── avatars.php │ │ │ ├── auth.php │ │ │ └── installation.php │ │ ├── src │ │ │ └── panel │ │ │ │ ├── layout.php │ │ │ │ ├── snippet.php │ │ │ │ ├── models │ │ │ │ ├── page │ │ │ │ │ ├── addbutton.php │ │ │ │ │ ├── blueprint │ │ │ │ │ │ ├── fields.php │ │ │ │ │ │ └── files.php │ │ │ │ │ └── sidebar.php │ │ │ │ ├── user │ │ │ │ │ ├── blueprint.php │ │ │ │ │ └── history.php │ │ │ │ └── file │ │ │ │ │ └── menu.php │ │ │ │ ├── upload.php │ │ │ │ ├── collections │ │ │ │ ├── users.php │ │ │ │ └── files.php │ │ │ │ ├── urls.php │ │ │ │ ├── view.php │ │ │ │ ├── roots.php │ │ │ │ ├── controllers │ │ │ │ └── field.php │ │ │ │ ├── installer.php │ │ │ │ ├── widgets.php │ │ │ │ ├── translation.php │ │ │ │ └── form │ │ │ │ └── plugins.php │ │ ├── forms │ │ │ ├── avatars │ │ │ │ └── delete.php │ │ │ ├── files │ │ │ │ ├── delete.php │ │ │ │ └── edit.php │ │ │ ├── pages │ │ │ │ ├── delete.php │ │ │ │ ├── url.php │ │ │ │ ├── add.php │ │ │ │ ├── toggle.php │ │ │ │ └── edit.php │ │ │ ├── users │ │ │ │ └── delete.php │ │ │ ├── editor │ │ │ │ ├── link.php │ │ │ │ └── email.php │ │ │ ├── installation │ │ │ │ ├── check.php │ │ │ │ └── signup.php │ │ │ └── auth │ │ │ │ └── login.php │ │ ├── layouts │ │ │ ├── base.php │ │ │ ├── fatal.php │ │ │ └── app.php │ │ └── helpers.php │ ├── assets │ │ ├── images │ │ │ ├── avatar.png │ │ │ ├── pattern.png │ │ │ ├── hint.arrows.png │ │ │ ├── loader.black.gif │ │ │ ├── loader.white.gif │ │ │ └── placeholder.png │ │ ├── fonts │ │ │ ├── sourcesanspro-400.woff │ │ │ ├── sourcesanspro-600.woff │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── sourcesanspro-400.woff2 │ │ │ ├── sourcesanspro-600.woff2 │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── sourcesanspro-400-italic.woff │ │ │ └── sourcesanspro-400-italic.woff2 │ │ ├── js │ │ │ └── dist │ │ │ │ ├── app.min.js │ │ │ │ └── form.min.js │ │ └── css │ │ │ └── form.min.css │ ├── readme.md │ └── index.php ├── site.php ├── assets │ ├── fonts │ │ ├── sourcesanspro-300.woff │ │ ├── sourcesanspro-400.woff │ │ ├── sourcesanspro-600.woff │ │ └── sourcesanspro-400-italic.woff │ └── images │ │ └── logo.svg ├── kirby │ ├── kirby │ │ ├── request │ │ │ ├── query.php │ │ │ ├── path.php │ │ │ └── params.php │ │ ├── request.php │ │ └── urls.php │ ├── readme.md │ ├── toolkit │ │ ├── lib │ │ │ ├── l.php │ │ │ ├── c.php │ │ │ ├── toolkit.php │ │ │ ├── error.php │ │ │ ├── timer.php │ │ │ ├── tpl.php │ │ │ ├── obj.php │ │ │ ├── silo.php │ │ │ ├── password.php │ │ │ ├── yaml.php │ │ │ ├── exif │ │ │ │ └── camera.php │ │ │ ├── cache │ │ │ │ ├── driver │ │ │ │ │ ├── mock.php │ │ │ │ │ ├── apc.php │ │ │ │ │ └── session.php │ │ │ │ └── value.php │ │ │ ├── cache.php │ │ │ ├── redirect.php │ │ │ ├── server.php │ │ │ └── bitmask.php │ │ └── readme.md │ ├── lib │ │ ├── pageextension.php │ │ └── structure.php │ ├── system.php │ ├── branches │ │ ├── default.php │ │ ├── multilang │ │ │ ├── languages.php │ │ │ ├── language.php │ │ │ └── content.php │ │ └── multilang.php │ └── core │ │ ├── users.php │ │ └── field.php ├── index.php ├── .htaccess └── readme.md ├── index.php ├── .DS_Store ├── www.conf ├── Dockerfile └── README.md /sample/site/cache/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/site/accounts/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/site/plugins/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/.DS_Store -------------------------------------------------------------------------------- /sample/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/.DS_Store -------------------------------------------------------------------------------- /sample/content/error/error.txt: -------------------------------------------------------------------------------- 1 | Title: Error 2 | 3 | ---- 4 | 5 | Text: The page has not been found. -------------------------------------------------------------------------------- /sample/panel/app/views/files/delete.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /sample/panel/app/views/pages/delete.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/panel/app/views/pages/toggle.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/panel/app/views/users/delete.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/panel/app/translations/ca/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Catalan", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/cs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Česky", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/da/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Dansk", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/de/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Deutsch", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/en/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "English", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/fa/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "پارسی", 3 | "direction": "rtl" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/fi/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Suomi", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/fr/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Français", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/it/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Italiano", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/ja/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Japanese", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/pl/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Polski", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/ro/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Română", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/tr/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Türkçe", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/views/avatars/delete.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/panel/app/translations/bg/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Bulgarian", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/hu/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hungarian", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/nb/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Norsk Bokmål", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/nl/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Nederlands", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/sv_SE/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Svenska", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/site.php: -------------------------------------------------------------------------------- 1 | urls->index = "http://" . $_SERVER["HTTP_HOST"]; 4 | 5 | -------------------------------------------------------------------------------- /sample/panel/app/fields/structure/views/delete.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/panel/app/translations/id/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Bahasa Indonesia", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/zh_CN/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "简体中文(大陆)", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/zh_TW/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "繁體中文(台灣)", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/es_ES/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Español (España)", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/pt_PT/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Português (Portugal)", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/ru/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Русский (Russian)", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/content/1-about/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/content/1-about/about.jpg -------------------------------------------------------------------------------- /sample/panel/app/topbars/error.php: -------------------------------------------------------------------------------- 1 | append('', l('error.headline')); 5 | }; -------------------------------------------------------------------------------- /sample/panel/app/translations/es_419/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Español (América Latina)", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/app/translations/pt_BR/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Português (Brasileiro)", 3 | "direction": "ltr" 4 | } -------------------------------------------------------------------------------- /sample/panel/assets/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/panel/assets/images/avatar.png -------------------------------------------------------------------------------- /sample/panel/assets/images/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/panel/assets/images/pattern.png -------------------------------------------------------------------------------- /sample/assets/fonts/sourcesanspro-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/assets/fonts/sourcesanspro-300.woff -------------------------------------------------------------------------------- /sample/assets/fonts/sourcesanspro-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/assets/fonts/sourcesanspro-400.woff -------------------------------------------------------------------------------- /sample/assets/fonts/sourcesanspro-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/assets/fonts/sourcesanspro-600.woff -------------------------------------------------------------------------------- /sample/panel/assets/images/hint.arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/panel/assets/images/hint.arrows.png -------------------------------------------------------------------------------- /sample/panel/assets/images/loader.black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/panel/assets/images/loader.black.gif -------------------------------------------------------------------------------- /sample/panel/assets/images/loader.white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/panel/assets/images/loader.white.gif -------------------------------------------------------------------------------- /sample/panel/assets/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/panel/assets/images/placeholder.png -------------------------------------------------------------------------------- /sample/panel/app/fields/structure/views/add.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/panel/app/fields/structure/views/update.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/content/2-projects/1-project-a/green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/content/2-projects/1-project-a/green.jpg -------------------------------------------------------------------------------- /sample/content/2-projects/2-project-b/road.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/content/2-projects/2-project-b/road.jpg -------------------------------------------------------------------------------- /sample/panel/assets/fonts/sourcesanspro-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/panel/assets/fonts/sourcesanspro-400.woff -------------------------------------------------------------------------------- /sample/panel/assets/fonts/sourcesanspro-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/panel/assets/fonts/sourcesanspro-600.woff -------------------------------------------------------------------------------- /sample/assets/fonts/sourcesanspro-400-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/assets/fonts/sourcesanspro-400-italic.woff -------------------------------------------------------------------------------- /sample/content/2-projects/1-project-a/forrest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/content/2-projects/1-project-a/forrest.jpg -------------------------------------------------------------------------------- /sample/content/2-projects/1-project-a/the-sea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/content/2-projects/1-project-a/the-sea.jpg -------------------------------------------------------------------------------- /sample/content/2-projects/3-project-c/hightide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/content/2-projects/3-project-c/hightide.jpg -------------------------------------------------------------------------------- /sample/panel/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/panel/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /sample/panel/assets/fonts/sourcesanspro-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/panel/assets/fonts/sourcesanspro-400.woff2 -------------------------------------------------------------------------------- /sample/panel/assets/fonts/sourcesanspro-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/panel/assets/fonts/sourcesanspro-600.woff2 -------------------------------------------------------------------------------- /sample/content/2-projects/2-project-b/mountains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhurlow/docker-kirby-nginx/HEAD/sample/content/2-projects/2-project-b/mountains.jpg -------------------------------------------------------------------------------- /sample/panel/app/views/error/index.php: -------------------------------------------------------------------------------- 1 |