aboutsummaryrefslogtreecommitdiff
path: root/website/templates/contributing/index.html
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2018-04-10 00:23:36 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2018-04-10 00:23:49 +0200
commit22e9c25db63426c542ae0a655f29b69180bd92f7 (patch)
treec8ff156f9a986f6e60747230ebd679edf5d88544 /website/templates/contributing/index.html
parent57fb2b9773d96777ba343e28e5e2ae4d6fa96f42 (diff)
downloadlombok-22e9c25db63426c542ae0a655f29b69180bd92f7.tar.gz
lombok-22e9c25db63426c542ae0a655f29b69180bd92f7.tar.bz2
lombok-22e9c25db63426c542ae0a655f29b69180bd92f7.zip
[website] Added a section on contributing to lombok, with documentation on how lombok’s execution path works. See pull request #71
Diffstat (limited to 'website/templates/contributing/index.html')
-rw-r--r--website/templates/contributing/index.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/website/templates/contributing/index.html b/website/templates/contributing/index.html
new file mode 100644
index 00000000..4f6a1bca
--- /dev/null
+++ b/website/templates/contributing/index.html
@@ -0,0 +1,17 @@
+<#import "../_scaffold.html" as main>
+
+<@main.scaffold title="Documentation for being a lombok developer">
+ <div class="page-header top5">
+ <div class="row text-center">
+ <@main.h1 title="Documentation for lombok developers" />
+ </div>
+ <div class="row">
+ <@main.feature title="contributing" href="contributing">
+ Want to contribute to Project Lombok? Start by reading this introduction.
+ </@main.feature>
+ <@main.feature title="execution path" href="lombok-execution-path">
+ Discusses how lombok ends up being invoked, and how it gets around to transforming code being compiled / edited.
+ </@main.feature>
+ </div>
+ </div>
+</@main.scaffold>