A static site generator and markdown indexer inspired by Hugo and DEV, written in PHP
AboutLibrarian is a static site builder and Markdown document indexer written in PHP, inspired by Hugo. It follows the same format as DEV.to for markdown files, utilizing front matter and liquid tags for custom functionality. Librarian does not use databases, sessions, or users and is primarily administered from the command-line. It allows for multiple authors and provides support for various liquid tags for embedding audio, video, YouTube videos, and files from GitHub.
To install AboutLibrarian, follow these steps:
git clone https://github.com/aboutlibrarian/aboutlibrarian.git
cd aboutlibrarian
composer install
config.php file with your desired settings:// config.php
<?php
return [
'base_url' => 'https://example.com',
'site_title' => 'AboutLibrarian',
// ...
];
php bin/build
build directory. You can then deploy it to your desired hosting environment.AboutLibrarian is a static site builder and Markdown document indexer written in PHP. It offers features such as front matter with customizable fields, command-line administration, support for multiple authors, and various liquid tags for embedding media and files. It is a lightweight alternative to Hugo, allowing users to build and index static sites with ease.