aboutsummaryrefslogtreecommitdiff
path: root/website2/templates/credits.html
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2016-10-17 23:09:21 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2017-05-29 21:01:53 +0200
commit599b6aab677439ae1bdea2cdca3233d0b763fd3f (patch)
tree8766f124271d056c8e8c22fd1a8a1ada08284275 /website2/templates/credits.html
parent4e75ed8f8661033662b2d26c4a42fafa9d61b75f (diff)
downloadlombok-599b6aab677439ae1bdea2cdca3233d0b763fd3f.tar.gz
lombok-599b6aab677439ae1bdea2cdca3233d0b763fd3f.tar.bz2
lombok-599b6aab677439ae1bdea2cdca3233d0b763fd3f.zip
Updated just about all of the pages to the template-based redesign.
Added ajaxified loading for feature pages.
Diffstat (limited to 'website2/templates/credits.html')
-rw-r--r--website2/templates/credits.html50
1 files changed, 50 insertions, 0 deletions
diff --git a/website2/templates/credits.html b/website2/templates/credits.html
new file mode 100644
index 00000000..95bff83d
--- /dev/null
+++ b/website2/templates/credits.html
@@ -0,0 +1,50 @@
+<#import "/_scaffold.html" as main>
+
+<@main.scaffold>
+ <div class="page-header top5">
+ <div class="row text-center">
+ <h1>Project Lombok - About the authors and everyone that's helped us create Project Lombok.</h1>
+ </div>
+ <div class="row">
+ <div class="credits">
+ <div class="committers personList">
+ <h3>Regular contributors to Project Lombok:</h3>
+
+ <div class="row text-center">
+ <div class="person col-md-2">
+ <div class="imgCt"><img class="reinierImg" src="images/reinier.jpg" /></div>
+ <span class="name">Reinier Zwitserloot</span>
+ </div>
+ <div class="person col-md-2">
+ <div class="imgCt"><img class="roelImg" src="images/roel.jpg" /></div>
+ <span class="name">Roel Spilker</span>
+ </div>
+ </div>
+ </div>
+ <div class="thanks">
+ We'd like to thank:
+ <ul>
+ <li>
+ <strong>Perry Nguyen</strong> (pfn on ##java on freenode) for creating the inspiration for project lombok.
+ </li><li>
+ <strong>Tor Norbye</strong>, <strong>Jan Lahoda</strong>, and <strong>Petr Jiricka</strong> for helping out with Netbeans internals and/or javac.
+ </li><li>
+ All contributors who submitted patches or helped answering questions!</li>
+ </ul>
+
+ as well as the authors of the following tools that we use:
+
+ <ul>
+ <li>
+ <a href="http://github.com/">Github</a> for hosting lombok's repository.
+ </li><li>
+ The <a href="http://asm.ow2.org/index.html">ASM team</a> at ObjectWeb for creating an excellent class file editing tool. Lombok uses ASM to interact with Eclipse.
+ </li><li>
+ <strong>Markus Gebhard</strong> for creating <a href="http://java2html.de/">java2html</a> which we use for the example code snippets on the features pages.
+ </li>
+ </ul>
+ </div>
+ </div>
+ </div>
+ </div>
+</@main.scaffold>