Import static html template into c5 5.5.1
Permalink
im trying to implement a static html page into c5, so it becomes a theme.
Im new to C5, but ive followed thehttp://www.concrete5.org/documentation/how-tos/designers/make-a-the... , but i cant make it work. all help would be appriciated
ive attached the files
Im new to C5, but ive followed thehttp://www.concrete5.org/documentation/how-tos/designers/make-a-the... , but i cant make it work. all help would be appriciated
ive attached the files
should say that it wont show up when i want to select a theme
http://www.concrete5.org/documentation/how-tos/designers/packaging-up-a-theme/
Is a more complete and up-to-date howto on this.
Is a more complete and up-to-date howto on this.
thx alot for the fast answer... ive now installed the theme, but when i login to the backend im missing all the editing options etc...
Any ideas what im missing?
Any ideas what im missing?
my head section looks like this:
<?php defined('C5_EXECUTE') or die(_("Access Denied.")); ?> <!doctype html> <html lang="<?php echo LANGUAGE?>" class="no-js"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <link rel="stylesheet" href="<?php echo $this->getThemePath()?>/reset.css" /> <link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getStyleSheet('style.css')?>" /> <?php Loader::element('header_required'); ?>
Make sure you also have the following before your closing /body tag:
Above loads all c5 js
<?php Loader::element('footer_required'); ?>
Above loads all c5 js
thx alot.. that did the trick :D