Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Looking for minimal theme no title no menu no look
#1
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.
Reply
#2
(2016-01-29, 17:16:57)Bill Wrote: 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.

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(); ?>
Reply
#3
This will be enough:
PHP Code:
<!DOCTYPE html>
<
html lang="<?php echo get_site_lang(true); ?>">
<
head>
  <meta charset="utf-8">
  <title><?php get_page_clean_title(); ?></title>
</head>

<body>
<?php get_page_content(); ?>
</body>

</html> 
Reply
#4
Thanks !
Reply
#5
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 )
Reply




Users browsing this thread: 1 Guest(s)