Plugin tags updated
This commit is contained in:
parent
2288075874
commit
925f6e4f92
|
@ -4,7 +4,7 @@
|
|||
define('BLUDIT_VERSION', 'githubVersion');
|
||||
define('BLUDIT_CODENAME', '');
|
||||
define('BLUDIT_RELEASE_DATE', '');
|
||||
define('BLUDIT_BUILD', '20160121');
|
||||
define('BLUDIT_BUILD', '20160122');
|
||||
|
||||
// Debug mode
|
||||
define('DEBUG_MODE', TRUE);
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
{
|
||||
"native": "Español (Argentina)",
|
||||
"english-name": "Spanish",
|
||||
"last-update": "2015-10-02",
|
||||
"last-update": "2016-01-22",
|
||||
"author": "Diego",
|
||||
"email": "",
|
||||
"website": ""
|
||||
|
|
|
@ -33,6 +33,7 @@ class pluginDisqus extends Plugin {
|
|||
{
|
||||
global $Page;
|
||||
global $Site;
|
||||
var_dump($Page);
|
||||
if( $Site->homePage()==$Page->key() ) {
|
||||
$this->disable = true;
|
||||
}
|
||||
|
|
|
@ -1,12 +1,7 @@
|
|||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "RSS",
|
||||
"description": "This plugin generate a file rss.xml.",
|
||||
"author": "Bludit",
|
||||
"email": "",
|
||||
"website": "https://github.com/dignajar/bludit-plugins",
|
||||
"version": "1.0",
|
||||
"releaseDate": "2016-01-07"
|
||||
"name": "RSS Feed",
|
||||
"description": "This plugin generate a RSS Feed for your site."
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "RSS Feed",
|
||||
"description": "Este plugin genera contenido RSS Feed para su sitio."
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Sitemap",
|
||||
"description": "Este plugin genera un archivo sitemap.xml, el cual provee la lista de paginas de su sitio web, esto ayuda a los buscadores a organizar y filtrar contenido de su sitio web."
|
||||
}
|
||||
}
|
|
@ -51,7 +51,7 @@ class pluginTags extends Plugin {
|
|||
|
||||
foreach($db as $tagKey=>$fields)
|
||||
{
|
||||
$tagArray[] = array('tagKey'=>$tagKey, 'count'=>$dbTags->countPostsByTag($tagKey), 'name'=>ucfirst($fields['name']));
|
||||
$tagArray[] = array('tagKey'=>$tagKey, 'count'=>$dbTags->countPostsByTag($tagKey), 'name'=>$fields['name']);
|
||||
}
|
||||
|
||||
// Sort the array based on options
|
||||
|
@ -79,4 +79,4 @@ class pluginTags extends Plugin {
|
|||
|
||||
return $html;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -48,5 +48,8 @@
|
|||
<!--[if lte IE 8]><script src="<?php echo HTML_PATH_THEME ?>assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="<?php echo HTML_PATH_THEME ?>assets/js/main.js"></script>
|
||||
|
||||
<!-- Plugins Site Body End -->
|
||||
<?php Theme::plugins('siteBodyEnd') ?>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -101,5 +101,8 @@ MIT license
|
|||
<!--[if lte IE 8]><script src="<?php echo HTML_PATH_THEME ?>assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="<?php echo HTML_PATH_THEME ?>assets/js/main.js"></script>
|
||||
|
||||
<!-- Plugins Site Body End -->
|
||||
<?php Theme::plugins('siteBodyEnd') ?>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
Loading…
Reference in New Issue