]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Updated theme readme
authorSarven Capadisli <csarven@status.net>
Wed, 2 Dec 2009 10:22:30 +0000 (11:22 +0100)
committerSarven Capadisli <csarven@status.net>
Wed, 2 Dec 2009 10:22:30 +0000 (11:22 +0100)
theme/README [new file with mode: 0644]
theme/readme.txt [deleted file]

diff --git a/theme/README b/theme/README
new file mode 100644 (file)
index 0000000..266a89f
--- /dev/null
@@ -0,0 +1,38 @@
+/** Howto: create a StatusNet theme
+ *
+ * @package   StatusNet
+ * @author    Sarven Capadisli <csarven@status.net>
+ * @copyright 2009 StatusNet, Inc.
+ * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
+ * @link      http://status.net/
+ */
+
+Location of key paths and files under theme/:
+
+./base/css/
+./base/css/display.css
+./base/images/
+
+./default/css/
+./default/css/display.css
+./default/images/
+
+./base/display.css contains layout, typography rules:
+Only alter this file if you want to change the layout of the site. Please note that, any updates to this in future statusnet releases may not be compatible with your version.
+
+./default/css/display.css contains only the background images and colour rules:
+This file is a good basis for creating your own theme.
+
+Let's create a theme:
+
+1. To start off, copy over the default theme:
+cp -r default mytheme
+
+2. Edit your mytheme stylesheet:
+nano mytheme/css/display.css
+
+a) Search and replace your colours and background images, or
+b) Create your own layout either importing a separate stylesheet (e.g., change to @import url(base.css);) or simply place it before the rest of the rules.
+
+4. Set /config.php to load 'mytheme':
+$config['site']['theme'] = 'mytheme';
diff --git a/theme/readme.txt b/theme/readme.txt
deleted file mode 100644 (file)
index d030f2d..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/** Howto: create a statusnet theme
- *
- * @package   StatusNet
- * @author Sarven Capadisli <csarven@status.net>
- * @copyright 2009 Control Yourself, Inc.
- * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link      http://laconi.ca/
- */
-
-Location of key paths and files under theme/:
-
-./base/css/
-./base/css/display.css
-./base/images/
-
-./default/css/
-./default/css/display.css
-./default/images/
-
-./base/display.css contains layout, typography rules:
-Only alter this file if you want to change the layout of the site. Please note that, any updates to this in future statusnet releases may not be compatible with your version.
-
-./default/css/display.css contains only the background images and colour rules:
-This file is a good basis for creating your own theme.
-
-Let's create a theme:
-
-1. To start off, copy over the default theme:
-cp -r default mytheme
-
-2. Edit your mytheme stylesheet:
-nano mytheme/css/display.css
-
-a) Search and replace your colours and background images, or
-b) Create your own layout either importing a separate stylesheet (e.g., change to @import url(base.css);) or simply place it before the rest of the rules.
-
-4. Set /config.php to load 'mytheme':
-$config['site']['theme'] = 'mytheme';