diff --git a/view/settings_display.tpl b/view/settings_display.tpl
new file mode 100644
index 000000000..fc7a56c8a
--- /dev/null
+++ b/view/settings_display.tpl
@@ -0,0 +1,23 @@
+$tabs
+
+
$ptitle
+
+
diff --git a/view/theme/diabook-aerith/communityhome.tpl b/view/theme/diabook-aerith/communityhome.tpl
new file mode 100755
index 000000000..cf8d81335
--- /dev/null
+++ b/view/theme/diabook-aerith/communityhome.tpl
@@ -0,0 +1,92 @@
+
+{{ if $page }}
+
$page
+{{ endif }}
+
+
+
+
+
+{{ if $lastusers_title }}
+
Connectable Services
+
+{{ endif }}
+
+
+
+
+
+{{ if $lastusers_title }}
+
PostIt to Friendica
+
+{{ endif }}
+
+
+
+{{ if $lastusers_title }}
+
$lastusers_title
+
+{{ for $lastusers_items as $i }}
+ $i
+{{ endfor }}
+
+{{ endif }}
+
+
+
+{{ if $activeusers_title }}
+
$activeusers_title
+
+{{ for $activeusers_items as $i }}
+ $i
+{{ endfor }}
+
+{{ endif }}
+
+
+{{ if $photos_title }}
+
$photos_title
+
+{{ for $photos_items as $i }}
+ $i
+{{ endfor }}
+
+{{ endif }}
+
+
+
+{{ if $like_title }}
+
$like_title
+
+{{ for $like_items as $i }}
+ - $i
+{{ endfor }}
+
+{{ endif }}
+
diff --git a/view/theme/diabook-aerith/contact_template.tpl b/view/theme/diabook-aerith/contact_template.tpl
new file mode 100755
index 000000000..48930b48a
--- /dev/null
+++ b/view/theme/diabook-aerith/contact_template.tpl
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ {{ if $contact.photo_menu }}
+
+
+ {{ endif }}
+
+
+
+
+
$contact.name
+
+
+
diff --git a/view/theme/diabook-aerith/directory_item.tpl b/view/theme/diabook-aerith/directory_item.tpl
new file mode 100755
index 000000000..db1936e4b
--- /dev/null
+++ b/view/theme/diabook-aerith/directory_item.tpl
@@ -0,0 +1,10 @@
+
+
diff --git a/view/theme/diabook-aerith/fpostit/README b/view/theme/diabook-aerith/fpostit/README
new file mode 100644
index 000000000..39b7c5761
--- /dev/null
+++ b/view/theme/diabook-aerith/fpostit/README
@@ -0,0 +1,8 @@
+fpostit
+
+original author: Devlon Duthied
+
+see his blog posting:
+http://blog.duthied.com/2011/09/13/node-agnostic-friendika-bookmarklet/
+
+original published at github https://github.com/duthied/Friendika-Bookmarklet
diff --git a/view/theme/diabook-aerith/fpostit/fpostit.js b/view/theme/diabook-aerith/fpostit/fpostit.js
new file mode 100755
index 000000000..d183c7573
--- /dev/null
+++ b/view/theme/diabook-aerith/fpostit/fpostit.js
@@ -0,0 +1,6 @@
+javascript: (function() {
+ the_url = 'localhost/view/theme/diabook/fpostit/fpostit.php?url=' + encodeURIComponent(window.location.href) + '&title=' + encodeURIComponent(document.title) + '&text=' + encodeURIComponent(''+(window.getSelection ? window.getSelection() : document.getSelection ? document.getSelection() : document.selection.createRange().text));
+ a_funct = function() {
+ if (!window.open(the_url, 'fpostit', 'location=yes,links=no,scrollbars=no,toolbar=no,width=600,height=300')) location.href = the_url};
+ if (/Firefox/.test(navigator.userAgent)) {setTimeout(a_funct, 0)}
+ else {a_funct()}})()"
\ No newline at end of file
diff --git a/view/theme/diabook-aerith/fpostit/fpostit.php b/view/theme/diabook-aerith/fpostit/fpostit.php
new file mode 100644
index 000000000..65c43a2b9
--- /dev/null
+++ b/view/theme/diabook-aerith/fpostit/fpostit.php
@@ -0,0 +1,135 @@
+
+
+
+
+
+
+
+ $content);
+
+ // echo "posting to: $url
";
+
+ $c = curl_init();
+ curl_setopt($c, CURLOPT_URL, $url);
+ curl_setopt($c, CURLOPT_USERPWD, "$username:$password");
+ curl_setopt($c, CURLOPT_POSTFIELDS, $data);
+ curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
+ curl_setopt($c, CURLOPT_FOLLOWLOCATION, true);
+ $c_result = curl_exec($c);
+ if(curl_errno($c)){
+ $error = curl_error($c);
+ showForm($error, $content);
+ }
+
+ curl_close($c);
+ if (!isset($error)) {
+ echo '';
+ }
+
+ } else {
+ $error = "Missing account name and/or password...try again please";
+ showForm($error, $content);
+ }
+
+} else {
+ showForm(null, $content);
+}
+
+function showForm($error, $content) {
+ $username_cookie = $_COOKIE['username'];
+ $password_cookie = $_COOKIE['password'];
+
+ echo <<
+
+ Friendika Bookmarklet
+
+
+
+
+
+
+
+ {{ if $pdesc }}
$profile.pdesc
{{ endif }}
+
+
+
+
+ {{ if $location }}
+
- $location
+ -
+ {{ if $profile.address }}
$profile.address
{{ endif }}
+
+ $profile.locality{{ if $profile.locality }}, {{ endif }}
+ $profile.region
+ $profile.postal-code
+
+ {{ if $profile.country-name }}$profile.country-name{{ endif }}
+
+
+ {{ endif }}
+
+ {{ if $gender }}
- $gender
- $profile.gender
{{ endif }}
+
+ {{ if $profile.pubkey }}
$profile.pubkey
{{ endif }}
+
+ {{ if $marital }}
- ♥$marital
- $profile.marital
{{ endif }}
+
+ {{ if $homepage }}
- $homepage
- $profile.homepage
{{ endif }}
+
+ {{ inc diaspora_vcard.tpl }}{{ endinc }}
+
+
+
+
+$contact_block
+
+
diff --git a/view/theme/diabook-aerith/right_aside.tpl b/view/theme/diabook-aerith/right_aside.tpl
new file mode 100644
index 000000000..a65677696
--- /dev/null
+++ b/view/theme/diabook-aerith/right_aside.tpl
@@ -0,0 +1,20 @@
+