diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2a8844e --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*~ +build/* diff --git a/README.textile b/README.textile index 359e3c7..b76001f 100644 --- a/README.textile +++ b/README.textile @@ -54,3 +54,8 @@ Grab the starter theme for this "other respository":http://github.com/soska/DTES h2. 9. Can't you write better documentation? The code and the example are well commented, but I'll try to do better documentation in the future. In the mean time, you could help me by playing with it and sending really frequently asked questions by email to arm.sosa [at] gmail [dot] com or over Twitter. + + +h2. 10 What is the diferense to "Soska Edition" + +Minimal patches to "make" more "fast" the devel of themes diff --git a/build.xml b/build.xml new file mode 100644 index 0000000..22fbe70 --- /dev/null +++ b/build.xml @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/template/app/controller.php b/template/app/controller.php new file mode 100644 index 0000000..e69de29 diff --git a/template/app/theme.php b/template/app/theme.php new file mode 100644 index 0000000..e69de29 diff --git a/template/app/widgets.php b/template/app/widgets.php new file mode 100644 index 0000000..e69de29 diff --git a/template/footer.php b/template/footer.php new file mode 100644 index 0000000..7c80fd2 --- /dev/null +++ b/template/footer.php @@ -0,0 +1,19 @@ + + + + + + + \ No newline at end of file diff --git a/template/functions.php b/template/functions.php new file mode 100644 index 0000000..3689cd4 --- /dev/null +++ b/template/functions.php @@ -0,0 +1,11 @@ +getHelpers()); +extract($blog->getTextDomain()); +?> \ No newline at end of file diff --git a/template/header.php b/template/header.php new file mode 100644 index 0000000..f3816f0 --- /dev/null +++ b/template/header.php @@ -0,0 +1,16 @@ + + + + element('title'); + $blog->element('meta'); + wp_head(); + ?> + + +getBodyClass('@@Themename@@'); ?>> \ No newline at end of file diff --git a/template/index.php b/template/index.php new file mode 100644 index 0000000..94002b1 --- /dev/null +++ b/template/index.php @@ -0,0 +1,22 @@ +get('header'); ?> +
+ renderView('entry'); + } + }else{ + $blog->renderView('404'); + } + ?> +
+get('sidebar'); +$blog->get('footer'); +?> \ No newline at end of file diff --git a/template/sidebar.php b/template/sidebar.php new file mode 100644 index 0000000..28d9527 --- /dev/null +++ b/template/sidebar.php @@ -0,0 +1,9 @@ + + \ No newline at end of file diff --git a/template/style.css b/template/style.css new file mode 100644 index 0000000..8b0b1e2 --- /dev/null +++ b/template/style.css @@ -0,0 +1,11 @@ +/* +Theme Name: @@Themename@@ +Theme URI: http://github.com/compermisos/dte +Version: 0.1.0 +Description: Base theme for Duperrific Theme Engine. +Author: Jesus Christian Cruz Acono +Author URI: http://github.com/compermisos/ +. +General comments/License Statement if any. +. +*/ \ No newline at end of file diff --git a/template/views/404.php b/template/views/404.php new file mode 100644 index 0000000..e69de29 diff --git a/template/views/elements/meta.php b/template/views/elements/meta.php new file mode 100644 index 0000000..e69de29 diff --git a/template/views/elements/title.php b/template/views/elements/title.php new file mode 100644 index 0000000..e69de29 diff --git a/template/views/entry.php b/template/views/entry.php new file mode 100644 index 0000000..e69de29 diff --git a/template/views/page.php b/template/views/page.php new file mode 100644 index 0000000..e69de29 diff --git a/template/views/panels/general.php b/template/views/panels/general.php new file mode 100644 index 0000000..e69de29 diff --git a/template/views/sidebars/default.php b/template/views/sidebars/default.php new file mode 100644 index 0000000..e69de29