├── config ├── blocks │ ├── line │ │ ├── line.php │ │ └── line.yml │ ├── table │ │ └── table.yml │ ├── list │ │ ├── list.php │ │ └── list.yml │ ├── text │ │ ├── text.php │ │ └── text.yml │ ├── markdown │ │ ├── markdown.php │ │ └── markdown.yml │ ├── heading │ │ ├── heading.php │ │ └── heading.yml │ ├── code │ │ ├── code.php │ │ └── code.yml │ ├── quote │ │ ├── quote.php │ │ └── quote.yml │ ├── video │ │ ├── video.yml │ │ └── video.php │ ├── gallery │ │ ├── gallery.php │ │ └── gallery.yml │ └── image │ │ ├── image.php │ │ └── image.yml ├── fields │ ├── hidden.php │ ├── gap.php │ ├── line.php │ ├── mixins │ │ ├── userpicker.php │ │ ├── filepicker.php │ │ ├── pagepicker.php │ │ ├── min.php │ │ ├── layout.php │ │ ├── datetime.php │ │ └── options.php │ ├── list.php │ ├── range.php │ ├── tel.php │ ├── headline.php │ ├── radio.php │ ├── select.php │ ├── email.php │ ├── url.php │ ├── info.php │ ├── number.php │ ├── toggles.php │ ├── multiselect.php │ ├── slug.php │ ├── writer.php │ └── checkboxes.php ├── blueprints │ ├── files │ │ └── default.yml │ ├── pages │ │ └── default.yml │ ├── blocks │ │ ├── text.yml │ │ ├── video.yml │ │ ├── quote.yml │ │ ├── image.yml │ │ ├── heading.yml │ │ ├── table.yml │ │ └── code.yml │ └── site.yml ├── areas │ ├── files │ │ └── dropdowns.php │ ├── system.php │ ├── languages.php │ ├── account │ │ ├── dropdowns.php │ │ └── views.php │ ├── account.php │ ├── users │ │ ├── dropdowns.php │ │ └── searches.php │ ├── logout.php │ ├── users.php │ ├── languages │ │ └── views.php │ ├── site │ │ ├── dropdowns.php │ │ ├── views.php │ │ └── searches.php │ ├── site.php │ ├── installation.php │ └── login.php ├── templates │ └── emails │ │ └── auth │ │ ├── login.php │ │ └── password-reset.php ├── sections │ ├── mixins │ │ ├── search.php │ │ ├── min.php │ │ ├── empty.php │ │ ├── help.php │ │ ├── max.php │ │ ├── details.php │ │ ├── headline.php │ │ ├── pagination.php │ │ ├── sort.php │ │ └── parent.php │ ├── info.php │ └── fields.php ├── api │ ├── models │ │ ├── SiteBlueprint.php │ │ ├── FileBlueprint.php │ │ ├── UserBlueprint.php │ │ ├── Role.php │ │ ├── Translation.php │ │ ├── PageBlueprint.php │ │ ├── Language.php │ │ ├── Site.php │ │ └── FileVersion.php │ ├── routes │ │ ├── translations.php │ │ ├── roles.php │ │ ├── languages.php │ │ └── lock.php │ ├── authentication.php │ ├── routes.php │ ├── models.php │ └── collections.php ├── presets │ └── files.php └── setup.php ├── views ├── snippets │ ├── footer.php │ └── header.php ├── php.php ├── fatal.php └── browser.php ├── i18n └── rules │ ├── fi.json │ ├── nb.json │ ├── sv_SE.json │ ├── de.json │ ├── uk.json │ ├── da.json │ ├── hr.json │ ├── it.json │ ├── et.json │ ├── tr.json │ ├── eo.json │ ├── rm.json │ ├── az.json │ ├── hu.json │ ├── lv.json │ ├── cs.json │ ├── lt.json │ ├── pl.json │ ├── is_IS.json │ ├── fr.json │ ├── ar.json │ ├── ka.json │ ├── fa.json │ ├── LICENSE │ ├── mk.json │ ├── bg.json │ ├── ru.json │ ├── hi.json │ ├── sr.json │ └── hy.json ├── panel ├── dist │ ├── favicon.png │ ├── apple-touch-icon.png │ └── favicon.svg └── cypress.config.js ├── vendor ├── filp │ └── whoops │ │ ├── src │ │ └── Whoops │ │ │ ├── Resources │ │ │ └── views │ │ │ │ ├── header_outer.html.php │ │ │ │ ├── panel_details.html.php │ │ │ │ ├── panel_details_outer.html.php │ │ │ │ ├── panel_left.html.php │ │ │ │ ├── panel_left_outer.html.php │ │ │ │ ├── frames_container.html.php │ │ │ │ ├── frames_description.html.php │ │ │ │ ├── layout.html.php │ │ │ │ └── frame_list.html.php │ │ │ ├── Exception │ │ │ └── ErrorException.php │ │ │ ├── Handler │ │ │ └── HandlerInterface.php │ │ │ └── Util │ │ │ └── HtmlDumperOutput.php │ │ ├── LICENSE.md │ │ └── composer.json ├── laminas │ └── laminas-escaper │ │ ├── COPYRIGHT.md │ │ └── src │ │ └── Exception │ │ ├── ExceptionInterface.php │ │ ├── RuntimeException.php │ │ └── InvalidArgumentException.php ├── psr │ └── log │ │ ├── src │ │ ├── InvalidArgumentException.php │ │ ├── LoggerAwareInterface.php │ │ ├── LogLevel.php │ │ ├── AbstractLogger.php │ │ ├── LoggerAwareTrait.php │ │ └── NullLogger.php │ │ ├── composer.json │ │ └── LICENSE ├── symfony │ ├── polyfill-intl-idn │ │ ├── Resources │ │ │ └── unidata │ │ │ │ ├── deviation.php │ │ │ │ ├── virama.php │ │ │ │ └── disallowed_STD3_valid.php │ │ ├── Info.php │ │ ├── LICENSE │ │ └── composer.json │ ├── polyfill-intl-normalizer │ │ ├── Resources │ │ │ └── stubs │ │ │ │ └── Normalizer.php │ │ ├── bootstrap80.php │ │ ├── bootstrap.php │ │ ├── LICENSE │ │ └── composer.json │ └── polyfill-mbstring │ │ ├── LICENSE │ │ └── composer.json ├── composer │ ├── autoload_namespaces.php │ ├── autoload_files.php │ ├── autoload_psr4.php │ ├── semver │ │ └── LICENSE │ └── LICENSE ├── michelf │ └── php-smartypants │ │ ├── Michelf │ │ ├── SmartyPants.inc.php │ │ └── SmartyPantsTypographer.inc.php │ │ └── composer.json ├── claviska │ └── simpleimage │ │ ├── composer.json │ │ └── LICENSE.md ├── autoload.php ├── league │ └── color-extractor │ │ ├── composer.json │ │ ├── LICENSE │ │ └── src │ │ └── League │ │ └── ColorExtractor │ │ └── Color.php └── phpmailer │ └── phpmailer │ ├── src │ └── Exception.php │ └── language │ ├── phpmailer.lang-zh_cn.php │ ├── phpmailer.lang-zh.php │ └── phpmailer.lang-ko.php ├── src ├── Form │ ├── Mixin │ │ ├── Max.php │ │ ├── Min.php │ │ └── EmptyState.php │ └── Fields.php ├── Cms │ ├── FilePermissions.php │ ├── SitePermissions.php │ ├── LayoutColumns.php │ ├── R.php │ ├── S.php │ ├── Visitor.php │ ├── Response.php │ ├── NestCollection.php │ ├── NestObject.php │ ├── Nest.php │ ├── UserBlueprint.php │ ├── SiteBlueprint.php │ └── UserPermissions.php ├── Http │ ├── Exceptions │ │ └── NextRouteException.php │ ├── Request │ │ ├── Auth │ │ │ ├── BearerAuth.php │ │ │ ├── SessionAuth.php │ │ │ └── BasicAuth.php │ │ └── Auth.php │ ├── Path.php │ └── Query.php ├── Toolkit │ ├── Config.php │ ├── Facade.php │ ├── Tpl.php │ ├── Silo.php │ └── Controller.php ├── Uuid │ ├── Identifiable.php │ ├── HasUuids.php │ ├── BlockUuid.php │ ├── StructureUuid.php │ ├── UserUuid.php │ ├── PageUuid.php │ └── SiteUuid.php ├── Exception │ ├── NotFoundException.php │ ├── LogicException.php │ ├── ErrorPageException.php │ ├── DuplicateException.php │ ├── PermissionException.php │ ├── BadMethodCallException.php │ └── InvalidArgumentException.php ├── Blueprint │ ├── NodeIcon.php │ ├── NodeProperty.php │ ├── NodeText.php │ ├── NodeString.php │ ├── NodeI18n.php │ └── Extension.php ├── Panel │ ├── Search.php │ ├── Dialog.php │ └── Redirect.php ├── Parsley │ ├── Schema.php │ └── Schema │ │ └── Plain.php ├── Option │ └── OptionsProvider.php ├── Template │ └── Slots.php ├── Data │ ├── Json.php │ └── Handler.php └── Image │ └── Camera.php ├── SECURITY.md ├── router.php ├── kirby.pub ├── .editorconfig ├── bootstrap.php ├── dependencies └── spyc │ └── COPYING └── assets └── whoops.css /config/blocks/line/line.php: -------------------------------------------------------------------------------- 1 |