diff --git a/templates/themes/recent/info.php b/templates/themes/recent/info.php index 58448b3d..bea3513c 100644 --- a/templates/themes/recent/info.php +++ b/templates/themes/recent/info.php @@ -64,12 +64,21 @@ 'comment' => '(eg. "recent.css" - see templates/themes/recent for details)' ); + $theme['config'][] = Array( + 'title' => '# of recent news', + 'name' => 'limit_news', + 'type' => 'text', + 'default' => '1', + 'comment' => '(maximum news to display)' + ); // Unique function name for building everything $theme['build_function'] = 'recentposts_build'; $theme['install_callback'] = 'recentposts_install'; if (!function_exists('recentposts_install')) { function recentposts_install($settings) { + if (!is_numeric($settings['limit_news']) || $settings['limit_news'] < 0) + return Array(false, '' . utf8tohtml($settings['limit_news']) . ' is not a non-negative integer.'); if (!is_numeric($settings['limit_images']) || $settings['limit_images'] < 0) return Array(false, '' . utf8tohtml($settings['limit_images']) . ' is not a non-negative integer.'); if (!is_numeric($settings['limit_posts']) || $settings['limit_posts'] < 0) diff --git a/templates/themes/recent/recent.css b/templates/themes/recent/recent.css index 2559bcc3..0bc6efa7 100644 --- a/templates/themes/recent/recent.css +++ b/templates/themes/recent/recent.css @@ -51,7 +51,7 @@ body color: #7fdd57; border: 0px solid #006; float: right; - width: 50%; + width: 40%; } .box h2 { diff --git a/templates/themes/recent/recent.html b/templates/themes/recent/recent.html index c7802aaf..7ae8f5c2 100644 --- a/templates/themes/recent/recent.html +++ b/templates/themes/recent/recent.html @@ -33,7 +33,24 @@
(No news to show.)
+ {% else %} + {% for entry in recent_news %} +{{ entry.body }}
+ {% endfor %} + {% endif %} +