aboutsummaryrefslogtreecommitdiffstats
path: root/assets/home.html
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-03-05 17:06:18 -0800
committerfriendica <info@friendica.com>2014-03-05 17:06:18 -0800
commit6d9b85910f1337efb9662ab2188de9023da6930b (patch)
tree226e9f6492085198eca18befc0abfe071ef148dd /assets/home.html
parent42f184b87cb2a55270e200d8bd71d221f4ac79b8 (diff)
downloadvolse-hubzilla-6d9b85910f1337efb9662ab2188de9023da6930b.tar.gz
volse-hubzilla-6d9b85910f1337efb9662ab2188de9023da6930b.tar.bz2
volse-hubzilla-6d9b85910f1337efb9662ab2188de9023da6930b.zip
assets update
Diffstat (limited to 'assets/home.html')
-rw-r--r--assets/home.html178
1 files changed, 133 insertions, 45 deletions
diff --git a/assets/home.html b/assets/home.html
index 923791b98..79b5a7be0 100644
--- a/assets/home.html
+++ b/assets/home.html
@@ -23,53 +23,141 @@ header { z-index: 10000; }
</style>
+<script>
+
+var terms = new Array(
+"Internet-scale Privacy",
+"Social Networking",
+"Single Sign-On",
+"Photo Albums",
+"Decentralised",
+"Cloud Storage",
+"Own Your Content",
+"Blogging",
+"Decent Encryption",
+"Chatrooms",
+"Unsend Private Mail",
+"Webpage Creation",
+"Content Management",
+"Message Expiration",
+"Games",
+"Unincorporated",
+"Forums",
+"Share Anything Digital",
+"Communications",
+"Pseudonyms",
+"Multiple Identities",
+"No Advertising",
+"Event Calendar",
+"Bookmarking",
+"Community Tagging",
+"Directory Services",
+"Nomadic Identity",
+"Derivative Channels",
+"Multiple Profiles",
+"Privacy Groups",
+"Autonomy",
+"Affinity Filtering",
+"Friend Suggestions",
+"Cross-Site Auth",
+"Themes",
+"Plugins",
+"External API",
+"3rd Party Apps",
+"Open Source",
+null
+);
+
+var r = 0;
+var g = 0;
+var b = 0;
+
+var speed = 2;
+var delay = 1000;
+
+var timer = null;
+var holdid = 0;
+var element = 'word-flasher';
+var custom = '';
+var seq = 0;
+var nindex = 0;
+
+var curr = null;
+
+function update_element() {
+
+ curr = terms[nindex];
+ nindex ++;
+ if(terms[nindex] == null)
+ nindex = 0
+
+ var id = document.getElementById(element);
+ id.innerHTML = curr;
+ timer = setTimeout('fadein();',5);
+}
+
+function fadeout() {
+
+ var id = document.getElementById(element);
+ r = (((r + speed) < 255) ? r + speed : 255);
+ g = (((g + speed) < 255) ? g + speed : 255);
+ b = (((b + speed) < 255) ? b + speed : 255);
+
+ if((r != 255) && (g != 255) && (b != 255)) {
+ timer = setTimeout('fadeout();',10);
+ }
+ else
+ update_element();
+ id.style.color = "rgb(" + r + "," + g + "," + b + ")";
+}
+
+function fadein() {
+ var id = document.getElementById(element);
+ r = (((r - speed) > 0) ? r - speed : 0);
+ g = (((g - speed) > 0) ? g - speed : 0);
+ b = (((b - speed) > 0) ? b - speed : 0);
+
+ if(r && g && b) {
+ timer = setTimeout('fadein();',10);
+ }
+ else {
+ timer = setTimeout('fadeout();',delay);
+ }
+
+ id.style.color = "rgb(" + r + "," + g + "," + b + ")";
+}
+
+
+$(document).ready(function() {
+ update_element();
+ $('.cb').colorbox({width: '50%'});
+});
+
+
+</script>
+
+
<div style="margin-top: 50px;"></div>
<center>
-<div style="color:#808080;font-weight:bold;font-size:4.0em; margin-top:105px; margin-bottom:45px;">Dream it. Do it.</div>
-<img style="width: 450px; margin-bottom: 95px;" src="assets/logo_simplifiedap.png" >
-</center>
-<div class="tr">
-<div class="td">Communications</div>
-<div class="td">Message Expiration</div>
-<div class="td">Photo Albums</div>
-<div class="td">Decentralised</div>
-<div class="td">Cloud Storage</div>
-<div class="td">Own Your Content</div>
-<div class="td">Blogging</div>
-<div class="td">Decent Encryption</div>
-<div class="td">Chatrooms</div>
-<div class="td">Unsend Private Mail</div>
-<div class="td">Webpage Creation</div>
-<div class="td">Content Management</div>
-<div class="td">Games</div>
-<div class="td">Unincorporated</div>
-<div class="td">Forums</div>
-<div class="td">Share Anything Digital</div>
-<div class="td">Pseudonyms</div>
-<div class="td">Multiple Identities</div>
-<div class="td">No Advertising</div>
-<div class="td">Event Calendar</div>
-<div class="td">Bookmarking</div>
-<div class="td">Community Tagging</div>
-<div class="td">Internet-scale Privacy</div>
-<div class="td">Single Sign-On</div>
-<div class="td">Directory Services</div>
-<div class="td">Nomadic Identity</div>
-<div class="td">Social Networking</div>
-<div class="td">Derivative Channels</div>
-<div class="td">Multiple Profiles</div>
-<div class="td">Privacy Groups</div>
-<div class="td">Autonomy</div>
-<div class="td">Affinity Filtering</div>
-<div class="td">Friend Suggestions</div>
-<div class="td">Cross-Site Auth</div>
-<div class="td">Themes</div>
-<div class="td">Plugins</div>
-<div class="td">External API</div>
-<div class="td">3rd Party Apps</div>
-<div class="td">Open Source</div>
-
+<div id="word-flasher" style="font-size: 3.0em; margin-top: 80px; font-weight: bold; margin-bottom: 35px;">RedMatrix</div>
+<img style="width: 450px; margin-bottom: 30px;" src="assets/logo_simplifiedap.png" >
+<div style="color:#808080;font-weight:bold;font-size:3.0em; margin-bottom:30px;">Dream it. Do it.</div>
+<div class="tr" style="font-size: 1.6em; color: #666; margin-left: 75px; margin-right: 75px;">
+The RedMatrix (aka "red") is a highly advanced social network which was created by a <a style="color: #555;" href="assets/farmer.html" class="cb">farmer in Australia</a> - that grew disgusted by the lack of privacy and the increasing tendency of foreign corporations and governments to monitor and control the internet. This has strangled and subverted all that was once good about the web - and turned it into a steaming pile of crap. (Aussies typically don't mince words.)
+</div>
+<br />
+<div class="tr" style="font-size: 1.6em; color: #666; margin-left: 75px; margin-right: 75px;">
+Working with a team of volunteers from six continents and over a period of several years, this has emerged into something quite spectacular. It's an open source, decentralised identity and sharing system which brings back some semblance of privacy to a world that desperately needs it - today more than ever. It's a webserver platform not much more complicated than a WordPress blog and using the same technology, but thousands of times more capable in what it can do for your social communications and sharing needs.
+</div>
+<br />
+<div class="tr" style="font-size: 1.6em; color: #666; margin-left: 75px; margin-right: 75px;">
+Taking cues from life in the Aussie outback, the Red Matrix has no central authority. Each channel (or social profile) is independent and autonomous - and controls their privacy as they see fit. Some will want more privacy, some less. They can do this - unlike your typical social network, the matrix has no say in their decision and cannot subvert it. Server hubs are self-sufficient and the network will continue to function if any single node in the matrix goes offline. It also provides channel resilience. You can "clone" your identity (social profile) to any hub in the network and carry on without interruption if your primary server goes wonky for an hour - or a week. (No fail whale needed here.)
+</div>
+<br />
+<div class="tr" style="font-size: 1.6em; color: #666; margin-left: 75px; margin-right: 75px;">
+Are you ready to ditch the steaming pile of crap, and breathe some fresh air for a change? Join us.
+</div>
<div class="tr"></div>
-<center><div style="margin-top: 35px; color: #808080; font-size: 1.8em;">Welcome to the Matrix</div><a href="pubsites">Public Sites</a> | <a href="https://redmatrix.me">Project Home</a> | <a href="https://github.com/friendica/red">Git</a> | <a href="https://zothub.com/channel/one">Developers</a></div></center>
+<div style="margin-top: 35px; color: #808080; font-size: 1.8em;">Welcome to the Matrix</div><a href="pubsites">Public Sites (sign up now!)</a> | <a href="https://redmatrix.me">Project Home</a> | <a href="https://github.com/friendica/red">Git</a> | <a href="https://zothub.com/channel/one">Developers</a></div></center>