diff --git a/README.md b/README.md index 168705c5..8455232e 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Bludit supports **Markdown** and **HTML code** for the content. [![Bludit PRO](https://img.shields.io/badge/Bludit-PRO-blue.svg)](https://pro.bludit.com/) -Social networks +Social Networks --------------- - [Twitter](https://twitter.com/bludit) @@ -27,23 +27,38 @@ Requirements You just need a web server with PHP support. +PHP v5.3 or higher. +PHP mbstring module for full UTF-8 support. +PHP gd module for image processing. +PHP dom module for DOM manipulation. +PHP json module for JSON manipulation. +Supported web servers: +Bludit supports almost every webserver +PHP Built-in web server + - PHP v5.3 or higher. - PHP [mbstring](http://php.net/manual/en/book.mbstring.php) module for full UTF-8 support. - PHP [gd](http://php.net/manual/en/book.image.php) module for image processing. - PHP [dom](http://php.net/manual/en/book.dom.php) module for DOM manipulation. - PHP [json](http://php.net/manual/en/book.json.php) module for JSON manipulation. -- Webserver with PHP support - * PHP Built-in web server +- Supported web servers: + * Bludit supports almost every webserver + * PHP Built-in web server -Installation guide +Installation Guide ------------------ -1. Download the latest version from https://cdn.bludit.com/builds/bludit_latest.zip -2. Extract the zip file into a directory like `bludit`. -3. Upload the directory `bludit` to your server/hosting. +1. Download the latest version from the official page. [Bludit.com](https://www.bludit.com) +2. Extract the zip file into a directory like bludit. +3. Upload the directory `bludit` to your web server or hosting. 4. Visit your domain https://example.com/bludit/ 5. Follow the Bludit Installer to configure the website. +Docker Image +------------ +Bludit provides an official Docker image. +- https://hub.docker.com/r/bludit/docker/ + License ------- Bludit is open source software licensed under the [MIT license](https://tldrlegal.com/license/mit-license). diff --git a/bl-kernel/admin/themes/default/css/default.css b/bl-kernel/admin/themes/default/css/default.css index a62bfe5f..4b987ab7 100644 --- a/bl-kernel/admin/themes/default/css/default.css +++ b/bl-kernel/admin/themes/default/css/default.css @@ -325,7 +325,9 @@ button.aslink:hover { } .bl-publish-sidebar { - display: none !important; + width: 100% !important; + padding: 0 !important; + margin-bottom: 25px !important; } .bl-publish-view { @@ -746,4 +748,4 @@ div.plugin-links > span.separator { #jsformplugin button[type=submit] { margin: 0; } -} \ No newline at end of file +} diff --git a/bl-kernel/boot/init.php b/bl-kernel/boot/init.php index 62e33a8d..00f6890f 100644 --- a/bl-kernel/boot/init.php +++ b/bl-kernel/boot/init.php @@ -1,10 +1,10 @@ '; $html .= ''; $html .= ''; $html .= ''.$Language->get('Show the home link on the sidebar').''; $html .= ''; diff --git a/bl-plugins/static-pages/languages/ru_RU.json b/bl-plugins/static-pages/languages/ru_RU.json new file mode 100644 index 00000000..5c163952 --- /dev/null +++ b/bl-plugins/static-pages/languages/ru_RU.json @@ -0,0 +1,9 @@ +{ + "plugin-data": + { + "name": "Static pages", + "description": "Показывает статические страницы на боковой панели. Это может быть полезно если вы создаёте блог с дополнительными страницами." + }, + "home-link": "Главная страница", + "show-the-home-link-on-the-sidebar": "Показывать ссылку на главную страницу на боковой панели." +} diff --git a/bl-plugins/version/plugin.php b/bl-plugins/version/plugin.php index fcaf4e21..cfbf42ab 100644 --- a/bl-plugins/version/plugin.php +++ b/bl-plugins/version/plugin.php @@ -37,7 +37,7 @@ class pluginVersion extends Plugin { } if ($this->newVersion()) { - $html = '
'.$Language->get('New version available').'
'; + $html = '
'.$Language->get('New version available').'
'; } else { if(defined('BLUDIT_PRO')) { $html = '
Bludit PRO v'.BLUDIT_VERSION.'
';