summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorSean O'Brien <diggity@diggmobile.(none)>2012-02-24 17:18:33 -0500
committerJames Vasile <james@jamesvasile.com>2012-03-12 14:39:31 -0400
commit575aeb7b980bfb1e93bce8a2c06534c7840653df (patch)
treeb5ca43448ea06ca7cec29a54cdeacd03cf3f1e5b /themes
parent88a8dee485fb8e1d734b4fb965ec8877d0f0b31c (diff)
Added HTML5-Reset code http://html5reset.org
Removed robots.txt (we have "noindex,nofollow" in the template meta tags, do we need this?) Added meta noindex,nofollow,noarchive tags for specific robots (googlebot etc.) Removed extraneous meta tags useful only for indexing Removed HTML5-Reset "_" directory. Not sure why it's useful to add an ambiguous folder to the directory tree. Made sure no Google-y code wasn't included (analytics, remote copy of JQuery, etc.) Fixed symbolic link docs/style.css New favicon and iOS "web clip" button
Diffstat (limited to 'themes')
-rw-r--r--themes/default/2col.css30
-rw-r--r--themes/default/favicon.icobin4710 -> 0 bytes
-rw-r--r--themes/default/images/freedombox-logotype.pngbin10596 -> 0 bytes
-rwxr-xr-xthemes/default/images/freedombox.pngbin22097 -> 0 bytes
-rw-r--r--themes/default/menu.js54
-rw-r--r--themes/default/plinth.js16
6 files changed, 0 insertions, 100 deletions
diff --git a/themes/default/2col.css b/themes/default/2col.css
deleted file mode 100644
index a3754bd..0000000
--- a/themes/default/2col.css
+++ /dev/null
@@ -1,30 +0,0 @@
-/* 2 Column settings */
-
-.colright {
- float:left;
- width:0%; /* width of page */
- position:relative;
-}
-
-.threecol .colmid {
- right:5%; /* width of the right column */
-}
-.threecol .colleft {
- right:70%; /* width of the middle column */
-}
-.threecol .col1 {
- width:66%; /* width of center column content (column width minus padding on either side) */
- left:102%; /* 100% plus left padding of center column */
-}
-.threecol .col2 {
- width:21%; /* Width of left column content (column width minus padding on either side) */
- left:11%; /* width of (right column) plus (center column left and right padding) plus (left column left padding) */
-}
-.threecol .col3 {
- width:21%; /* Width of right column content (column width minus padding on either side) */
-
- /* Note this used to be 85%, but I subtracted 1% for padding to pull stuff closer to the margin */
- left:84%; /* Please make note of the brackets here:
- (100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
-}
-
diff --git a/themes/default/favicon.ico b/themes/default/favicon.ico
deleted file mode 100644
index 8f4e75c..0000000
--- a/themes/default/favicon.ico
+++ /dev/null
Binary files differ
diff --git a/themes/default/images/freedombox-logotype.png b/themes/default/images/freedombox-logotype.png
deleted file mode 100644
index 6d0a0e3..0000000
--- a/themes/default/images/freedombox-logotype.png
+++ /dev/null
Binary files differ
diff --git a/themes/default/images/freedombox.png b/themes/default/images/freedombox.png
deleted file mode 100755
index 7095c65..0000000
--- a/themes/default/images/freedombox.png
+++ /dev/null
Binary files differ
diff --git a/themes/default/menu.js b/themes/default/menu.js
deleted file mode 100644
index 8107a72..0000000
--- a/themes/default/menu.js
+++ /dev/null
@@ -1,54 +0,0 @@
-function main_menu(items) {
- output = "<ul>"
- for (item in items) {
- i = items[item];
-
- // Handle active page
- if (i["active"]) {
- active = 'class = "active"';
- } else {
- active = '';
- }
-
- // Line break labels
- label = i["label"];
- if (label.search(" ") != -1) {
- label = label.replace(" ", "<br />");
- } else {
- label = "&nbsp;<br />" + label;
- }
-
- output = output +'<li><a href="' + i["url"] + '" ' + active + '>' + label + "</a></li>";
- }
- output = output + "</ul>";
- document.write(output);
-}
-
-function render_items(items) {
- output = "<ul>";
- for (item in items) {
- i = items[item];
-
- // Handle active page
- if (i["active"]) {
- active = 'class = "active"';
- } else {
- active = '';
- }
-
- output = output +'<li><a href="' + i["url"] + '" ' + active + '>' + i['label'] + "</a></li>";
- if (i['subs']) {
- output += render_items(i['subs']);
- }
- }
- output = output + "</ul>";
- return output
-}
-
-function side_menu(items) {
- if (items.length == 0) {
- return 0;
- }
- output = "<h2>Menu</h2>" + render_items(items);
- document.write(output);
-} \ No newline at end of file
diff --git a/themes/default/plinth.js b/themes/default/plinth.js
deleted file mode 100644
index dfe1443..0000000
--- a/themes/default/plinth.js
+++ /dev/null
@@ -1,16 +0,0 @@
-function toggle_visibility(id) {
- var d = document.getElementById(id);
- if(d.style.display == 'block')
- d.style.display = 'none';
- else
- d.style.display = 'block';
-}
-
-function show(id) {
- var d = document.getElementById(id);
- d.style.display = 'block';
-}
-
-function hide(id) {
- document.getElementById(id).style.display = 'none';
-}