diff --git a/templates/install/includes/footer.inc.html b/templates/install/includes/footer.inc.html deleted file mode 100644 index c20b84adc..000000000 --- a/templates/install/includes/footer.inc.html +++ /dev/null @@ -1,17 +0,0 @@ - -
- - - - \ No newline at end of file diff --git a/templates/install/includes/header.inc.html b/templates/install/includes/header.inc.html deleted file mode 100644 index 39d7c42da..000000000 --- a/templates/install/includes/header.inc.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - {intl l='Thelia Back Office'}{if ! empty($page_title)} - {$page_title}{/if} - - {images file='../../admin/default/assets/img/favicon.ico'}{/images} - - - - {stylesheets file='../../admin/default/assets/bootstrap/css/bootstrap.css' filters='cssembed'} - - {/stylesheets} - - {stylesheets file='../../admin/default/assets/bootstrap/css/bootstrap-responsive.css' filters='cssembed'} - - {/stylesheets} - - - {stylesheets file='../../admin/default/assets/css/*' filters='less,cssembed'} - - {/stylesheets} - - - diff --git a/templates/install/index.html b/templates/install/index.html index e69de29bb..888f8b943 100644 --- a/templates/install/index.html +++ b/templates/install/index.html @@ -0,0 +1,4 @@ +{extends file="layout.html"} +{block name="content"} + Hello World ! +{/block} \ No newline at end of file diff --git a/templates/install/layout.html b/templates/install/layout.html new file mode 100644 index 000000000..0a13586ad --- /dev/null +++ b/templates/install/layout.html @@ -0,0 +1,49 @@ + + + + {block name="title"}Thelia Install{/block} + + {images file='../admin/default/assets/img/favicon.ico'}{/images} + + + + {stylesheets file='../admin/default/assets/bootstrap/css/bootstrap.css' filters='cssembed'} + + {/stylesheets} + + {stylesheets file='../admin/default/assets/bootstrap/css/bootstrap-responsive.css' filters='cssembed'} + + {/stylesheets} + + + {stylesheets file='../admin/default/assets/css/*' filters='less,cssembed'} + + {/stylesheets} + + + +
+
+
{intl l='Version %ver' ver="{$THELIA_VERSION}"}
+
+
+
+ {block name="content"}{/block} +
+ +
+ + + + \ No newline at end of file