<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,5 +1,65 @@
-### Wish You Were Simple
+## Wish You Were Simple
 
 Stripped down theme for WordPress.
 
-More instructions to come..
\ No newline at end of file
+### function.php
+
+#### Assets
+
+Stylesheets and Javascripts are loaded through __wp_head()___ filter.
+
+Add CSS to load with __$stylesheets__ array :
+
+&lt;code&gt;
+$stylesheets = array(
+	&quot;reset.css&quot;,
+	&quot;style.css&quot;
+	&quot;some-path/my-cute-stylesheet.css&quot;
+);
+&lt;/code&gt;
+
+Add scripts to load with __$scripts__ array :
+
+&lt;code&gt;
+$stylesheets = array(
+	&quot;reset.css&quot;,
+	&quot;style.css&quot;
+	&quot;some-path/my-cute-stylesheet.css&quot;
+);
+&lt;/code&gt;
+
+__$version__ global is used for preventing browser caching. Change as you release to another random value.
+
+#### Theme Options Page
+
+This theme come with basic theme option that you can use in your theme file.
+
+Options can be grouped by __sets__, simply populate the &quot;options_sets&quot; array with additional options. Access them in your theme with _get_option(option_name)_
+
+&lt;code&gt;
+$options_sets = array(
+	'sets' =&gt; array(
+		'title' =&gt; 'Misc.',
+		'intro_text' =&gt; 'Change misc. settings here.',
+		'set_options' =&gt; array(
+			0 =&gt; array(
+				'label' =&gt; 'Google Analytics Account ID',
+				'help_text' =&gt; 'Insert only your tracker ID (UA-XXXXXXX-X). Leave empty for no tracking',
+				'type' =&gt; 'text', // available: text, textarea
+				'option_slug' =&gt; 'google_analytics_id' // option name, slugifed, no spaces or accents
+			)
+		)
+	)
+);
+&lt;/code&gt;
+
+### Included javascripts
+
+* jQuery (loaded by default)
+* cufon http://wiki.github.com/sorccu/cufon/about
+* jQuery.corner http://www.malsup.com/jquery/corner/
+* jQuery.swfobject http://jquery.thewikies.com/swfobject/
+
+### Javascript constants
+
+* WP_THEME_PATH = export current theme path
\ No newline at end of file</diff>
      <filename>README.markdown</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>ce4b3b71d73498293c06326c736b9bc52999e902</id>
    </parent>
  </parents>
  <author>
    <name>Antoine Girard</name>
    <email>thetoine@gmail.com</email>
  </author>
  <url>http://github.com/thetoine/wish-you-were-simple/commit/dae7eeca7f9d08d5a4d4b5ceab4420906f5c3dc0</url>
  <id>dae7eeca7f9d08d5a4d4b5ceab4420906f5c3dc0</id>
  <committed-date>2009-11-06T13:02:32-08:00</committed-date>
  <authored-date>2009-11-06T13:02:32-08:00</authored-date>
  <message>added some instructions</message>
  <tree>ab1a05c0b5b44915d83b353d495ca834111ffb81</tree>
  <committer>
    <name>Antoine Girard</name>
    <email>thetoine@gmail.com</email>
  </committer>
</commit>
