diff --git a/wp-content/themes/noblogs-home/functions.php b/wp-content/themes/noblogs-home/functions.php
new file mode 100644
index 0000000000000000000000000000000000000000..347ca4122c0a8522c0de779dcfeca62907aeea56
--- /dev/null
+++ b/wp-content/themes/noblogs-home/functions.php
@@ -0,0 +1,32 @@
+<?php
+
+function noblogs_bp_about() {
+  ?>
+<div id="noblogs_about">
+ 
+ <table border="0">
+  <tr>
+   <td class="apicetto_sx">&#8220;</td>
+
+   <td class="about_text">
+  ... una piattaforma di blogging
+  <a href="/policy/">libera ed anonima</a>,
+
+  a cura del collettivo
+  <a href="http://www.autistici.org/">Autistici /
+  Inventati</a>.
+   </td>
+
+   <td class="apicetto_dx">&#8222;</td>
+  </tr>
+ </table>
+
+</div>
+<?php
+}
+
+
+if ($_GET['test_home'] == '1') {
+  add_action('bp_before_blog_home', 'noblogs_bp_about');
+}
+
diff --git a/wp-content/themes/noblogs-home/images/animation.gif b/wp-content/themes/noblogs-home/images/animation.gif
new file mode 100644
index 0000000000000000000000000000000000000000..427a62b23f69771baa20c214b8aca466db6117d0
Binary files /dev/null and b/wp-content/themes/noblogs-home/images/animation.gif differ
diff --git a/wp-content/themes/noblogs-home/style.css b/wp-content/themes/noblogs-home/style.css
new file mode 100644
index 0000000000000000000000000000000000000000..439a7047e2262b646f332d9ff6bd8795331e4766
--- /dev/null
+++ b/wp-content/themes/noblogs-home/style.css
@@ -0,0 +1,42 @@
+/*
+Theme Name: NoBlogs Home (Buddypress)
+Theme URI: http://noblogs.org/
+Description: NoBlogs home page theme.
+Version: 1.0
+Author: autistici.org
+Author URI: http://www.autistici.org/
+Template: bp-default
+Tags: buddypress, two-column, grey, dark
+*/
+
+
+/* Inherit the default theme styles */
+@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/default.css );
+/* Inherit the default theme adminbar styles */
+@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css );
+
+
+#noblogs_about {
+ height: 200px;
+ background: url(/wp-content/themes/noblogs-home/images/animation.gif) no-repeat;
+ padding-left: 170px;
+ padding-top: 40px;
+ font-family: Helvetica, arial, sans-serif;
+ font-size: 28px;
+ line-height: 1.2em;
+}
+
+#noblogs_about .apicetto_sx {
+ vertical-align: top;
+ font-size: 48px;
+ color: #666;
+}
+
+#noblogs_about .about_text {
+}
+
+#noblogs_about .apicetto_dx {
+ font-size: 48px;
+ color: #666;
+ vertical-align: bottom;
+}