Looking for minimal theme no title no menu no look - Printable Version +- GetSimple Support Forum (http://get-simple.info/forums) +-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3) +--- Forum: Themes (http://get-simple.info/forums/forumdisplay.php?fid=10) +--- Thread: Looking for minimal theme no title no menu no look (/showthread.php?tid=7912) |
Looking for minimal theme no title no menu no look - Bill - 2016-01-29 Hi I am new here and don't know much about this CMS. I wanted to use Getsimple CMS to show content in small windows via iframe in a virtual tour. So i am just needing my client to change their content of page. I don't need any look or title or menu or anything except the wysiwig field to show on a blank background. How can i modify an existing theme to do that ? Or is there a theme like that i can download ? Thanks for your help. RE: Looking for minimal theme no title no menu no look - DimaYakovlev - 2016-01-29 (2016-01-29, 17:16:57)Bill Wrote: Hi Hi, Bill! Read this tutorial: http://get-simple.info/wiki/themes:tutorial Create minimal HTML document and use in body: PHP Code: <?php get_page_content(); ?> RE: Looking for minimal theme no title no menu no look - DimaYakovlev - 2016-01-30 This will be enough: PHP Code: <!DOCTYPE html> RE: Looking for minimal theme no title no menu no look - Bill - 2016-01-31 Thanks ! RE: Looking for minimal theme no title no menu no look - Carlos - 2016-01-31 Just a side note: It is recommended inserting something like this in the first line of your template: Code: <?php if(!defined('IN_GS')){ die('you cannot load this page directly.'); } ?> ( http://get-simple.info/wiki/themes:tips ) |