diff options
author | David A. Madore <david+git@madore.org> | 2018-07-14 21:07:00 +0200 |
---|---|---|
committer | David A. Madore <david+git@madore.org> | 2018-07-14 21:07:00 +0200 |
commit | 2ef34be07b699e7a802078d1d5b952347f2cffa7 (patch) | |
tree | ce17db07d80bf571082165b484aa88cc11ab0c05 | |
parent | 6512be2ad00185c8f6cab936ff72b64793ff857d (diff) | |
download | damlengine-2ef34be07b699e7a802078d1d5b952347f2cffa7.tar.gz damlengine-2ef34be07b699e7a802078d1d5b952347f2cffa7.tar.bz2 damlengine-2ef34be07b699e7a802078d1d5b952347f2cffa7.zip |
Add link to Twitter feed.
-rw-r--r-- | org/madore/damlengine/TodoFooter.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/org/madore/damlengine/TodoFooter.java b/org/madore/damlengine/TodoFooter.java index 66f0a9f..dffe7f6 100644 --- a/org/madore/damlengine/TodoFooter.java +++ b/org/madore/damlengine/TodoFooter.java @@ -51,6 +51,12 @@ public final class TodoFooter extends TodoElement { a.appendChild(ctx.doc.createTextNode("Google+")); addr.appendChild(ctx.doc.createTextNode("|")); a = ctx.doc.createElementNS(DamlEngine.XHTML_NS, "a"); + a.setAttributeNS(null, "href", "https://twitter.com/gro_tsen/"); + a.setAttributeNS(null, "rel", "author"); + addr.appendChild(a); + a.appendChild(ctx.doc.createTextNode("Twitter")); + addr.appendChild(ctx.doc.createTextNode("|")); + a = ctx.doc.createElementNS(DamlEngine.XHTML_NS, "a"); a.setAttributeNS(null, "href", "http://www.facebook.com/grotsen"); a.setAttributeNS(null, "rel", "author"); addr.appendChild(a); |