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

1 Attachment

 
markkoch replied on at Permalink Reply
should say that it wont show up when i want to select a theme
JohntheFish replied on at Permalink Best Answer Reply
JohntheFish
http://www.concrete5.org/documentation/how-tos/designers/packaging-up-a-theme/

Is a more complete and up-to-date howto on this.
markkoch replied on at Permalink Reply
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?
markkoch replied on at Permalink Reply
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'); ?>
adajad replied on at Permalink Reply
adajad
Make sure you also have the following before your closing /body tag:
<?php Loader::element('footer_required'); ?>


Above loads all c5 js
markkoch replied on at Permalink Reply
thx alot.. that did the trick :D