gitextract_mlgy7jua/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── labeler.yml │ ├── renovate.json │ └── workflows/ │ ├── discourse.yml │ ├── labeler.yml │ └── main.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── app/ │ ├── Providers/ │ │ └── ThemeServiceProvider.php │ ├── View/ │ │ └── Composers/ │ │ ├── App.php │ │ ├── Comments.php │ │ └── Post.php │ ├── filters.php │ └── setup.php ├── composer.json ├── functions.php ├── index.php ├── package.json ├── public/ │ └── .gitkeep ├── resources/ │ ├── css/ │ │ ├── app.css │ │ └── editor.css │ ├── fonts/ │ │ └── .gitkeep │ ├── images/ │ │ └── .gitkeep │ ├── js/ │ │ ├── app.js │ │ └── editor.js │ └── views/ │ ├── 404.blade.php │ ├── components/ │ │ └── alert.blade.php │ ├── forms/ │ │ └── search.blade.php │ ├── index.blade.php │ ├── layouts/ │ │ └── app.blade.php │ ├── page.blade.php │ ├── partials/ │ │ ├── comments.blade.php │ │ ├── content-page.blade.php │ │ ├── content-search.blade.php │ │ ├── content-single.blade.php │ │ ├── content.blade.php │ │ ├── entry-meta.blade.php │ │ └── page-header.blade.php │ ├── search.blade.php │ ├── sections/ │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ └── sidebar.blade.php │ ├── single.blade.php │ └── template-custom.blade.php ├── style.css ├── theme.json └── vite.config.js