Added Mastodon Social Network
This commit is contained in:
parent
3d20f1cb36
commit
53dbb3c25f
|
@ -59,7 +59,7 @@ class dbJSON {
|
||||||
if (isset($this->db[$field])) {
|
if (isset($this->db[$field])) {
|
||||||
return $this->db[$field];
|
return $this->db[$field];
|
||||||
}
|
}
|
||||||
return $this->dbFields[$field]['value'];
|
return $this->dbFields[$field];
|
||||||
}
|
}
|
||||||
|
|
||||||
// Save the JSON file
|
// Save the JSON file
|
||||||
|
|
|
@ -9,6 +9,8 @@ function updateBludit() {
|
||||||
if( ($site->currentBuild() < BLUDIT_BUILD) || isset($_GET['update']) ) {
|
if( ($site->currentBuild() < BLUDIT_BUILD) || isset($_GET['update']) ) {
|
||||||
Log::set('UPDATE SYSTEM - Starting.');
|
Log::set('UPDATE SYSTEM - Starting.');
|
||||||
|
|
||||||
|
@mkdir(PATH_WORKSPACES, DIR_PERMISSIONS, true);
|
||||||
|
|
||||||
$plugins = array('pluginRSS', 'pluginSitemap', 'pluginTimeMachineX', 'pluginBackup');
|
$plugins = array('pluginRSS', 'pluginSitemap', 'pluginTimeMachineX', 'pluginBackup');
|
||||||
foreach ($plugins as $plugin) {
|
foreach ($plugins as $plugin) {
|
||||||
if (pluginActivated($plugin)) {
|
if (pluginActivated($plugin)) {
|
||||||
|
|
|
@ -365,6 +365,15 @@ echo Bootstrap::pageTitle(array('title'=>$L->g('Settings'), 'icon'=>'cog'));
|
||||||
'tip'=>''
|
'tip'=>''
|
||||||
));
|
));
|
||||||
|
|
||||||
|
echo Bootstrap::formInputText(array(
|
||||||
|
'name'=>'mastodon',
|
||||||
|
'label'=>'Mastodon',
|
||||||
|
'value'=>$site->mastodon(),
|
||||||
|
'class'=>'',
|
||||||
|
'placeholder'=>'',
|
||||||
|
'tip'=>''
|
||||||
|
));
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<div class="form-group mt-4">
|
<div class="form-group mt-4">
|
||||||
<button type="submit" class="btn btn-primary mr-2" name="save">'.$L->g('Save').'</button>
|
<button type="submit" class="btn btn-primary mr-2" name="save">'.$L->g('Save').'</button>
|
||||||
|
|
|
@ -38,7 +38,7 @@ define('PATH_DATABASES', PATH_CONTENT.'databases'.DS);
|
||||||
define('PATH_PLUGINS_DATABASES', PATH_CONTENT.'databases'.DS.'plugins'.DS);
|
define('PATH_PLUGINS_DATABASES', PATH_CONTENT.'databases'.DS.'plugins'.DS);
|
||||||
define('PATH_TMP', PATH_CONTENT.'tmp'.DS);
|
define('PATH_TMP', PATH_CONTENT.'tmp'.DS);
|
||||||
define('PATH_UPLOADS', PATH_CONTENT.'uploads'.DS);
|
define('PATH_UPLOADS', PATH_CONTENT.'uploads'.DS);
|
||||||
define('PATH_WORKSPACES', PATH_CONTENT.'workspaces'.DS);
|
define('PATH_WORKSPACES', PATH_CONTENT.'workspaces'.DS);
|
||||||
|
|
||||||
define('PATH_UPLOADS_PROFILES', PATH_UPLOADS.'profiles'.DS);
|
define('PATH_UPLOADS_PROFILES', PATH_UPLOADS.'profiles'.DS);
|
||||||
define('PATH_UPLOADS_THUMBNAILS', PATH_UPLOADS.'thumbnails'.DS);
|
define('PATH_UPLOADS_THUMBNAILS', PATH_UPLOADS.'thumbnails'.DS);
|
||||||
|
|
|
@ -31,6 +31,7 @@ class Site extends dbJSON {
|
||||||
'github'=> '',
|
'github'=> '',
|
||||||
'gitlab'=> '',
|
'gitlab'=> '',
|
||||||
'linkedin'=> '',
|
'linkedin'=> '',
|
||||||
|
'mastodon'=> '',
|
||||||
'orderBy'=> 'date', // date or position
|
'orderBy'=> 'date', // date or position
|
||||||
'extremeFriendly'=> true,
|
'extremeFriendly'=> true,
|
||||||
'autosaveInterval'=> 2, // minutes
|
'autosaveInterval'=> 2, // minutes
|
||||||
|
@ -159,6 +160,11 @@ class Site extends dbJSON {
|
||||||
return $this->getField('linkedin');
|
return $this->getField('linkedin');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function mastodon()
|
||||||
|
{
|
||||||
|
return $this->getField('mastodon');
|
||||||
|
}
|
||||||
|
|
||||||
public function orderBy()
|
public function orderBy()
|
||||||
{
|
{
|
||||||
return $this->getField('orderBy');
|
return $this->getField('orderBy');
|
||||||
|
|
|
@ -281,10 +281,10 @@
|
||||||
"minute": "minute",
|
"minute": "minute",
|
||||||
"example-page-1-slug": "create-your-own-content",
|
"example-page-1-slug": "create-your-own-content",
|
||||||
"example-page-1-title": "Create your own content",
|
"example-page-1-title": "Create your own content",
|
||||||
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the [admin panel](.\/admin) with the username `admin` and the password you set on the installation process.",
|
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the <a href=\".\/admin\/\">admin panel<\/a> with the username `admin` and the password you set on the installation process.",
|
||||||
"example-page-2-slug": "set-up-your-new-site",
|
"example-page-2-slug": "set-up-your-new-site",
|
||||||
"example-page-2-title": "Set up your new site",
|
"example-page-2-title": "Set up your new site",
|
||||||
"example-page-2-content": "Update the settings of your site from the [admin panel](.\/admin), you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
"example-page-2-content": "Update the settings of your site from the <a href=\".\/admin\/\">admin panel<\/a>, you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
||||||
"example-page-3-slug": "follow-bludit",
|
"example-page-3-slug": "follow-bludit",
|
||||||
"example-page-3-title": "Follow Bludit",
|
"example-page-3-title": "Follow Bludit",
|
||||||
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
||||||
|
|
|
@ -281,10 +281,10 @@
|
||||||
"minute": "minute",
|
"minute": "minute",
|
||||||
"example-page-1-slug": "create-your-own-content",
|
"example-page-1-slug": "create-your-own-content",
|
||||||
"example-page-1-title": "Create your own content",
|
"example-page-1-title": "Create your own content",
|
||||||
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the [admin panel](.\/admin) with the username `admin` and the password you set on the installation process.",
|
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the <a href=\".\/admin\/\">admin panel<\/a> with the username `admin` and the password you set on the installation process.",
|
||||||
"example-page-2-slug": "set-up-your-new-site",
|
"example-page-2-slug": "set-up-your-new-site",
|
||||||
"example-page-2-title": "Set up your new site",
|
"example-page-2-title": "Set up your new site",
|
||||||
"example-page-2-content": "Update the settings of your site from the [admin panel](.\/admin), you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
"example-page-2-content": "Update the settings of your site from the <a href=\".\/admin\/\">admin panel<\/a>, you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
||||||
"example-page-3-slug": "follow-bludit",
|
"example-page-3-slug": "follow-bludit",
|
||||||
"example-page-3-title": "Follow Bludit",
|
"example-page-3-title": "Follow Bludit",
|
||||||
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
||||||
|
|
|
@ -282,10 +282,10 @@
|
||||||
"minute": "minute",
|
"minute": "minute",
|
||||||
"example-page-1-slug": "create-your-own-content",
|
"example-page-1-slug": "create-your-own-content",
|
||||||
"example-page-1-title": "Create your own content",
|
"example-page-1-title": "Create your own content",
|
||||||
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the [admin panel](.\/admin) with the username `admin` and the password you set on the installation process.",
|
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the <a href=\".\/admin\/\">admin panel<\/a> with the username `admin` and the password you set on the installation process.",
|
||||||
"example-page-2-slug": "set-up-your-new-site",
|
"example-page-2-slug": "set-up-your-new-site",
|
||||||
"example-page-2-title": "Set up your new site",
|
"example-page-2-title": "Set up your new site",
|
||||||
"example-page-2-content": "Update the settings of your site from the [admin panel](.\/admin), you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
"example-page-2-content": "Update the settings of your site from the <a href=\".\/admin\/\">admin panel<\/a>, you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
||||||
"example-page-3-slug": "follow-bludit",
|
"example-page-3-slug": "follow-bludit",
|
||||||
"example-page-3-title": "Follow Bludit",
|
"example-page-3-title": "Follow Bludit",
|
||||||
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
||||||
|
|
|
@ -282,10 +282,10 @@
|
||||||
"minute": "minute",
|
"minute": "minute",
|
||||||
"example-page-1-slug": "create-your-own-content",
|
"example-page-1-slug": "create-your-own-content",
|
||||||
"example-page-1-title": "Create your own content",
|
"example-page-1-title": "Create your own content",
|
||||||
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the <a href=\".\/admin\">admin panel<\/a> with the username `admin` and the password you set in the installation process.",
|
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the <a href=\".\/admin\/\">admin panel<\/a> with the username `admin` and the password you set in the installation process.",
|
||||||
"example-page-2-slug": "set-up-your-new-site",
|
"example-page-2-slug": "set-up-your-new-site",
|
||||||
"example-page-2-title": "Set up your new site",
|
"example-page-2-title": "Set up your new site",
|
||||||
"example-page-2-content": "Update the settings of your site from the <a href=\".\/admin\">admin panel<\/a>, you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
"example-page-2-content": "Update the settings of your site from the <a href=\".\/admin\/\">admin panel<\/a>, you can change the title, description and the social networks from <a href=\".\/admin\/settings\">Settings > General<\/a>.",
|
||||||
"example-page-3-slug": "follow-bludit",
|
"example-page-3-slug": "follow-bludit",
|
||||||
"example-page-3-title": "Follow Bludit",
|
"example-page-3-title": "Follow Bludit",
|
||||||
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
||||||
|
|
|
@ -281,13 +281,13 @@
|
||||||
"minute": "minuto",
|
"minute": "minuto",
|
||||||
"example-page-1-slug": "crea-tu-propio-contenido",
|
"example-page-1-slug": "crea-tu-propio-contenido",
|
||||||
"example-page-1-title": "Crea tu propio contenido",
|
"example-page-1-title": "Crea tu propio contenido",
|
||||||
"example-page-1-content": "Comience a escribir su propio contenido o edite el actual para adaptarlo a sus necesidades. Para crear, editar o eliminar contenido debe iniciar sesión en el [panel de administración](\/admin) con el nombre de usuario `admin` y la contraseña que configuró en el proceso de instalación.",
|
"example-page-1-content": "Comience a escribir su propio contenido o edite el actual para adaptarlo a sus necesidades. Para crear, editar o eliminar contenido debe iniciar sesión en el <a href=\".\/admin\/\">panel de administración<\/a> con el nombre de usuario <code>admin</code> y la contraseña que configuró en el proceso de instalación.",
|
||||||
"example-page-2-slug": "set-up-your-new-site",
|
"example-page-2-slug": "set-up-your-new-site",
|
||||||
"example-page-2-title": "Configure su nuevo sitio",
|
"example-page-2-title": "Configure su nuevo sitio",
|
||||||
"example-page-2-content": "Actualice la configuración de su sitio desde el [panel de administración](\/admin), puede cambiar el título, la descripción y las redes sociales desde [Configuracion > General](\/admin\/settings-general).",
|
"example-page-2-content": "Actualice la configuración de su sitio desde el <a href=\".\/admin\/\">panel de administración<\/a>, puede cambiar el título, la descripción y las redes sociales desde <a href=\"./admin/settings-general\">Configuracion > General</a>.",
|
||||||
"example-page-3-slug": "follow-bludit",
|
"example-page-3-slug": "follow-bludit",
|
||||||
"example-page-3-title": "Sigue Bludit",
|
"example-page-3-title": "Sigue Bludit",
|
||||||
"example-page-3-content": "Seguinos en las redes sociales <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, [Twitter](https:\/\/www.twitter.com\/bludit) y <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> para estar informado de las ultimas noticias, nuevos plugins, nuevos temas, y las ultimas versiones. También podes seguir nuestro <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
"example-page-3-content": "Seguinos en las redes sociales <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\" target=\"_blank\">Twitter<\/a> y <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> para estar informado de las ultimas noticias, nuevos plugins, nuevos temas, y las ultimas versiones. También podes seguir nuestro <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
||||||
"example-page-4-slug": "acerca-de",
|
"example-page-4-slug": "acerca-de",
|
||||||
"example-page-4-title": "Acerca de",
|
"example-page-4-title": "Acerca de",
|
||||||
"example-page-4-content": "Su página `Acerca de` es una de las páginas más visitadas en su sitio, necesita ser simple con algunas claves, como su nombre, quién es usted, cómo puede ponerse en contacto con usted o una pequeña historia.",
|
"example-page-4-content": "Su página `Acerca de` es una de las páginas más visitadas en su sitio, necesita ser simple con algunas claves, como su nombre, quién es usted, cómo puede ponerse en contacto con usted o una pequeña historia.",
|
||||||
|
|
|
@ -281,10 +281,10 @@
|
||||||
"minute": "minute",
|
"minute": "minute",
|
||||||
"example-page-1-slug": "create-your-own-content",
|
"example-page-1-slug": "create-your-own-content",
|
||||||
"example-page-1-title": "Create your own content",
|
"example-page-1-title": "Create your own content",
|
||||||
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the [admin panel](.\/admin) with the username `admin` and the password you set on the installation process.",
|
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the <a href=\".\/admin\/\">admin panel<\/a> with the username `admin` and the password you set on the installation process.",
|
||||||
"example-page-2-slug": "set-up-your-new-site",
|
"example-page-2-slug": "set-up-your-new-site",
|
||||||
"example-page-2-title": "Set up your new site",
|
"example-page-2-title": "Set up your new site",
|
||||||
"example-page-2-content": "Update the settings of your site from the [admin panel](.\/admin), you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
"example-page-2-content": "Update the settings of your site from the <a href=\".\/admin\/\">admin panel<\/a>, you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
||||||
"example-page-3-slug": "follow-bludit",
|
"example-page-3-slug": "follow-bludit",
|
||||||
"example-page-3-title": "Follow Bludit",
|
"example-page-3-title": "Follow Bludit",
|
||||||
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
||||||
|
|
|
@ -281,10 +281,10 @@
|
||||||
"minute": "minute",
|
"minute": "minute",
|
||||||
"example-page-1-slug": "create-your-own-content",
|
"example-page-1-slug": "create-your-own-content",
|
||||||
"example-page-1-title": "Create your own content",
|
"example-page-1-title": "Create your own content",
|
||||||
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the [admin panel](.\/admin) with the username `admin` and the password you set on the installation process.",
|
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the <a href=\".\/admin\/\">admin panel<\/a> with the username `admin` and the password you set on the installation process.",
|
||||||
"example-page-2-slug": "set-up-your-new-site",
|
"example-page-2-slug": "set-up-your-new-site",
|
||||||
"example-page-2-title": "Set up your new site",
|
"example-page-2-title": "Set up your new site",
|
||||||
"example-page-2-content": "Update the settings of your site from the [admin panel](.\/admin), you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
"example-page-2-content": "Update the settings of your site from the <a href=\".\/admin\/\">admin panel<\/a>, you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
||||||
"example-page-3-slug": "follow-bludit",
|
"example-page-3-slug": "follow-bludit",
|
||||||
"example-page-3-title": "Follow Bludit",
|
"example-page-3-title": "Follow Bludit",
|
||||||
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
||||||
|
|
|
@ -282,10 +282,10 @@
|
||||||
"minute": "minute",
|
"minute": "minute",
|
||||||
"example-page-1-slug": "create-your-own-content",
|
"example-page-1-slug": "create-your-own-content",
|
||||||
"example-page-1-title": "Create your own content",
|
"example-page-1-title": "Create your own content",
|
||||||
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the [admin panel](.\/admin) with the username `admin` and the password you set on the installation process.",
|
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the <a href=\".\/admin\/\">admin panel<\/a> with the username `admin` and the password you set on the installation process.",
|
||||||
"example-page-2-slug": "set-up-your-new-site",
|
"example-page-2-slug": "set-up-your-new-site",
|
||||||
"example-page-2-title": "Set up your new site",
|
"example-page-2-title": "Set up your new site",
|
||||||
"example-page-2-content": "Update the settings of your site from the [admin panel](.\/admin), you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
"example-page-2-content": "Update the settings of your site from the <a href=\".\/admin\/\">admin panel<\/a>, you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
||||||
"example-page-3-slug": "follow-bludit",
|
"example-page-3-slug": "follow-bludit",
|
||||||
"example-page-3-title": "Follow Bludit",
|
"example-page-3-title": "Follow Bludit",
|
||||||
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
||||||
|
|
|
@ -282,10 +282,10 @@
|
||||||
"minute": "minute",
|
"minute": "minute",
|
||||||
"example-page-1-slug": "create-your-own-content",
|
"example-page-1-slug": "create-your-own-content",
|
||||||
"example-page-1-title": "Create your own content",
|
"example-page-1-title": "Create your own content",
|
||||||
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the [admin panel](.\/admin) with the username `admin` and the password you set on the installation process.",
|
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the <a href=\".\/admin\/\">admin panel<\/a> with the username `admin` and the password you set on the installation process.",
|
||||||
"example-page-2-slug": "set-up-your-new-site",
|
"example-page-2-slug": "set-up-your-new-site",
|
||||||
"example-page-2-title": "Set up your new site",
|
"example-page-2-title": "Set up your new site",
|
||||||
"example-page-2-content": "Update the settings of your site from the [admin panel](.\/admin), you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
"example-page-2-content": "Update the settings of your site from the <a href=\".\/admin\/\">admin panel<\/a>, you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
||||||
"example-page-3-slug": "follow-bludit",
|
"example-page-3-slug": "follow-bludit",
|
||||||
"example-page-3-title": "Follow Bludit",
|
"example-page-3-title": "Follow Bludit",
|
||||||
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
||||||
|
|
|
@ -281,10 +281,10 @@
|
||||||
"minute": "minute",
|
"minute": "minute",
|
||||||
"example-page-1-slug": "create-your-own-content",
|
"example-page-1-slug": "create-your-own-content",
|
||||||
"example-page-1-title": "Create your own content",
|
"example-page-1-title": "Create your own content",
|
||||||
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the [admin panel](.\/admin) with the username `admin` and the password you set on the installation process.",
|
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the <a href=\".\/admin\/\">admin panel<\/a> with the username `admin` and the password you set on the installation process.",
|
||||||
"example-page-2-slug": "set-up-your-new-site",
|
"example-page-2-slug": "set-up-your-new-site",
|
||||||
"example-page-2-title": "Set up your new site",
|
"example-page-2-title": "Set up your new site",
|
||||||
"example-page-2-content": "Update the settings of your site from the [admin panel](.\/admin), you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
"example-page-2-content": "Update the settings of your site from the <a href=\".\/admin\/\">admin panel<\/a>, you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
||||||
"example-page-3-slug": "follow-bludit",
|
"example-page-3-slug": "follow-bludit",
|
||||||
"example-page-3-title": "Follow Bludit",
|
"example-page-3-title": "Follow Bludit",
|
||||||
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
||||||
|
|
|
@ -281,10 +281,10 @@
|
||||||
"minute": "minute",
|
"minute": "minute",
|
||||||
"example-page-1-slug": "create-your-own-content",
|
"example-page-1-slug": "create-your-own-content",
|
||||||
"example-page-1-title": "Create your own content",
|
"example-page-1-title": "Create your own content",
|
||||||
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the [admin panel](.\/admin) with the username `admin` and the password you set on the installation process.",
|
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the <a href=\".\/admin\/\">admin panel<\/a> with the username `admin` and the password you set on the installation process.",
|
||||||
"example-page-2-slug": "set-up-your-new-site",
|
"example-page-2-slug": "set-up-your-new-site",
|
||||||
"example-page-2-title": "Set up your new site",
|
"example-page-2-title": "Set up your new site",
|
||||||
"example-page-2-content": "Update the settings of your site from the [admin panel](.\/admin), you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
"example-page-2-content": "Update the settings of your site from the <a href=\".\/admin\/\">admin panel<\/a>, you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
||||||
"example-page-3-slug": "follow-bludit",
|
"example-page-3-slug": "follow-bludit",
|
||||||
"example-page-3-title": "Follow Bludit",
|
"example-page-3-title": "Follow Bludit",
|
||||||
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
||||||
|
|
|
@ -281,10 +281,10 @@
|
||||||
"minute": "minute",
|
"minute": "minute",
|
||||||
"example-page-1-slug": "create-your-own-content",
|
"example-page-1-slug": "create-your-own-content",
|
||||||
"example-page-1-title": "Create your own content",
|
"example-page-1-title": "Create your own content",
|
||||||
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the [admin panel](.\/admin) with the username `admin` and the password you set on the installation process.",
|
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the <a href=\".\/admin\/\">admin panel<\/a> with the username `admin` and the password you set on the installation process.",
|
||||||
"example-page-2-slug": "set-up-your-new-site",
|
"example-page-2-slug": "set-up-your-new-site",
|
||||||
"example-page-2-title": "Set up your new site",
|
"example-page-2-title": "Set up your new site",
|
||||||
"example-page-2-content": "Update the settings of your site from the [admin panel](.\/admin), you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
"example-page-2-content": "Update the settings of your site from the <a href=\".\/admin\/\">admin panel<\/a>, you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
||||||
"example-page-3-slug": "follow-bludit",
|
"example-page-3-slug": "follow-bludit",
|
||||||
"example-page-3-title": "Follow Bludit",
|
"example-page-3-title": "Follow Bludit",
|
||||||
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
||||||
|
|
|
@ -278,10 +278,10 @@
|
||||||
"minute": "minute",
|
"minute": "minute",
|
||||||
"example-page-1-slug": "create-your-own-content",
|
"example-page-1-slug": "create-your-own-content",
|
||||||
"example-page-1-title": "Create your own content",
|
"example-page-1-title": "Create your own content",
|
||||||
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the [admin panel](.\/admin) with the username `admin` and the password you set on the installation process.",
|
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the <a href=\".\/admin\/\">admin panel<\/a> with the username `admin` and the password you set on the installation process.",
|
||||||
"example-page-2-slug": "set-up-your-new-site",
|
"example-page-2-slug": "set-up-your-new-site",
|
||||||
"example-page-2-title": "Set up your new site",
|
"example-page-2-title": "Set up your new site",
|
||||||
"example-page-2-content": "Update the settings of your site from the [admin panel](.\/admin), you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
"example-page-2-content": "Update the settings of your site from the <a href=\".\/admin\/\">admin panel<\/a>, you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
||||||
"example-page-3-slug": "follow-bludit",
|
"example-page-3-slug": "follow-bludit",
|
||||||
"example-page-3-title": "Follow Bludit",
|
"example-page-3-title": "Follow Bludit",
|
||||||
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
||||||
|
|
|
@ -282,10 +282,10 @@
|
||||||
"minute": "minute",
|
"minute": "minute",
|
||||||
"example-page-1-slug": "create-your-own-content",
|
"example-page-1-slug": "create-your-own-content",
|
||||||
"example-page-1-title": "Create your own content",
|
"example-page-1-title": "Create your own content",
|
||||||
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the [admin panel](.\/admin) with the username `admin` and the password you set on the installation process.",
|
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the <a href=\".\/admin\/\">admin panel<\/a> with the username `admin` and the password you set on the installation process.",
|
||||||
"example-page-2-slug": "set-up-your-new-site",
|
"example-page-2-slug": "set-up-your-new-site",
|
||||||
"example-page-2-title": "Set up your new site",
|
"example-page-2-title": "Set up your new site",
|
||||||
"example-page-2-content": "Update the settings of your site from the [admin panel](.\/admin), you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
"example-page-2-content": "Update the settings of your site from the <a href=\".\/admin\/\">admin panel<\/a>, you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
||||||
"example-page-3-slug": "follow-bludit",
|
"example-page-3-slug": "follow-bludit",
|
||||||
"example-page-3-title": "Follow Bludit",
|
"example-page-3-title": "Follow Bludit",
|
||||||
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
||||||
|
|
|
@ -281,10 +281,10 @@
|
||||||
"minute": "minute",
|
"minute": "minute",
|
||||||
"example-page-1-slug": "create-your-own-content",
|
"example-page-1-slug": "create-your-own-content",
|
||||||
"example-page-1-title": "Create your own content",
|
"example-page-1-title": "Create your own content",
|
||||||
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the [admin panel](.\/admin) with the username `admin` and the password you set on the installation process.",
|
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the <a href=\".\/admin\/\">admin panel<\/a> with the username `admin` and the password you set on the installation process.",
|
||||||
"example-page-2-slug": "set-up-your-new-site",
|
"example-page-2-slug": "set-up-your-new-site",
|
||||||
"example-page-2-title": "Set up your new site",
|
"example-page-2-title": "Set up your new site",
|
||||||
"example-page-2-content": "Update the settings of your site from the [admin panel](.\/admin), you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
"example-page-2-content": "Update the settings of your site from the <a href=\".\/admin\/\">admin panel<\/a>, you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
||||||
"example-page-3-slug": "follow-bludit",
|
"example-page-3-slug": "follow-bludit",
|
||||||
"example-page-3-title": "Follow Bludit",
|
"example-page-3-title": "Follow Bludit",
|
||||||
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
||||||
|
|
|
@ -281,10 +281,10 @@
|
||||||
"minute": "分钟",
|
"minute": "分钟",
|
||||||
"example-page-1-slug": "create-your-own-content",
|
"example-page-1-slug": "create-your-own-content",
|
||||||
"example-page-1-title": "Create your own content",
|
"example-page-1-title": "Create your own content",
|
||||||
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the [admin panel](.\/admin) with the username `admin` and the password you set on theinstallation process.",
|
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the <a href=\".\/admin\/\">admin panel<\/a> with the username `admin` and the password you set on theinstallation process.",
|
||||||
"example-page-2-slug": "set-up-your-new-site",
|
"example-page-2-slug": "set-up-your-new-site",
|
||||||
"example-page-2-title": "Set up your new site",
|
"example-page-2-title": "Set up your new site",
|
||||||
"example-page-2-content": "Update the settings of your site from the [admin panel](.\/admin), you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
"example-page-2-content": "Update the settings of your site from the <a href=\".\/admin\/\">admin panel<\/a>, you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
||||||
"example-page-3-slug": "follow-bludit",
|
"example-page-3-slug": "follow-bludit",
|
||||||
"example-page-3-title": "Follow Bludit",
|
"example-page-3-title": "Follow Bludit",
|
||||||
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
||||||
|
|
|
@ -281,10 +281,10 @@
|
||||||
"minute": "minute",
|
"minute": "minute",
|
||||||
"example-page-1-slug": "create-your-own-content",
|
"example-page-1-slug": "create-your-own-content",
|
||||||
"example-page-1-title": "Create your own content",
|
"example-page-1-title": "Create your own content",
|
||||||
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the [admin panel](.\/admin) with the username `admin` and the password you set on the installation process.",
|
"example-page-1-content": "Start writing your own content or edit the current to fit your needs. To create, edit or remove content you need to login to the <a href=\".\/admin\/\">admin panel<\/a> with the username `admin` and the password you set on the installation process.",
|
||||||
"example-page-2-slug": "set-up-your-new-site",
|
"example-page-2-slug": "set-up-your-new-site",
|
||||||
"example-page-2-title": "Set up your new site",
|
"example-page-2-title": "Set up your new site",
|
||||||
"example-page-2-content": "Update the settings of your site from the [admin panel](.\/admin), you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
"example-page-2-content": "Update the settings of your site from the <a href=\".\/admin\/\">admin panel<\/a>, you can change the title, description and the social networks from <a href=\".\/admin\/settings\" target=\"_blank\">Settings > General<\/a>.",
|
||||||
"example-page-3-slug": "follow-bludit",
|
"example-page-3-slug": "follow-bludit",
|
||||||
"example-page-3-title": "Follow Bludit",
|
"example-page-3-title": "Follow Bludit",
|
||||||
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
"example-page-3-content": "Get information about news, new releases, new themes or new plugins on our social networks <a href=\"https:\/\/www.facebook.com\/bluditcms\/\" target=\"_blank\">Facebook<\/a>, <a href=\"https:\/\/www.twitter.com\/bludit\/\" target=\"_blank\">Twitter<\/a> and <a href=\"https:\/\/plus.google.com\/+Bluditcms\" target=\"_blank\">Google Plus<\/a> or visit our <a href=\"https:\/\/blog.bludit.com\" target=\"_blank\">Blog<\/a>.",
|
||||||
|
|
Loading…
Reference in New Issue