Index: about/author.js |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/about/author.js |
@@ -0,0 +1,16 @@ |
+var authorParent = document.getElementById('author'); |
+ |
+var googlePlus = document.createElement('a'); |
+googlePlus.setAttribute('href', 'https://plus.google.com/u/0/104326872148878117784/'); |
+var googlePlusLogo = document.createElement('img'); |
+googlePlusLogo.setAttribute('src', '/images/googlePlus.png'); |
+googlePlus.appendChild(googlePlusLogo); |
+ |
+var title = document.createElement('h2'); |
+title.appendChild(document.createTextNode(translate.get('about_author') + ' ')); |
+title.appendChild(googlePlus); |
+authorParent.appendChild(title); |
+ |
+var text = document.createElement('p'); |
+text.appendChild(document.createTextNode(translate.get('about_author_text'))); |
+authorParent.appendChild(text); |