├── assets
├── js
│ └── .gitkeep
├── css
│ └── .gitkeep
└── img
│ ├── .gitkeep
│ ├── whoops.svg
│ └── 404.svg
├── app
├── PostTypes
│ └── .gitkeep
├── Http
│ ├── Controllers
│ │ ├── .gitkeep
│ │ └── Controller.php
│ └── Lumberjack.php
├── Menu
│ ├── Menu.php
│ └── Item.php
├── Providers
│ └── AppServiceProvider.php
└── Exceptions
│ └── Handler.php
├── .gitignore
├── views
├── html-footer.twig
├── templates
│ ├── generic-page.twig
│ ├── home.twig
│ ├── posts.twig
│ └── errors
│ │ ├── 404.twig
│ │ └── whoops.twig
├── base.twig
└── html-header.twig
├── screenshot.png
├── config
├── timber.php
├── menus.php
├── posttypes.php
├── images.php
├── session.php
└── app.php
├── style.css
├── .editorconfig
├── routes.php
├── bootstrap
├── app.php
└── autoload.php
├── functions.php
├── phpcs.xml
├── .github
├── PULL_REQUEST_TEMPLATE.md
└── ISSUE_TEMPLATE.md
├── single.php
├── 404.php
├── search.php
├── composer.json
├── index.php
├── author.php
├── page.php
├── LICENSE.txt
├── archive.php
└── README.md
/assets/js/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/PostTypes/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/css/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/img/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/Http/Controllers/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | vendor
3 |
--------------------------------------------------------------------------------
/views/html-footer.twig:
--------------------------------------------------------------------------------
1 | {{ function('wp_footer') }}
2 |
--------------------------------------------------------------------------------
/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rareloop/lumberjack/HEAD/screenshot.png
--------------------------------------------------------------------------------
/config/timber.php:
--------------------------------------------------------------------------------
1 | [
8 | 'views',
9 | ],
10 | ];
11 |
--------------------------------------------------------------------------------
/views/templates/generic-page.twig:
--------------------------------------------------------------------------------
1 | {% extends "base.twig" %}
2 |
3 | {% block content %}
4 | {{ content|raw }}{{ title }}
6 | {{ content|raw }}
7 | {{ title }}
6 |
Sorry, no content
10 | {% endblock %} 11 | 12 | {% include 'html-footer.twig' %} 13 | 14 | 15 | -------------------------------------------------------------------------------- /config/images.php: -------------------------------------------------------------------------------- 1 | 'thumb' 8 | * 'width' => 100, 9 | * 'height' => 200, 10 | * 'crop' => true, 11 | * ] 12 | */ 13 | 'sizes' => [ 14 | ], 15 | ]; 16 | -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- 1 | bind(HandlerInterface::class, $app->make(Handler::class)); 14 | 15 | return $app; 16 | -------------------------------------------------------------------------------- /views/html-header.twig: -------------------------------------------------------------------------------- 1 | 2 |No results found.
26 | {% endif %} 27 |