Repository: nifi-site Updated Branches: refs/heads/master 43105fd88 -> ba0c9018d
NIFI-2733 - Introduce a Powered by NiFi section to website This closes #5. Signed-off-by: Aldrin Piri <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/nifi-site/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi-site/commit/ba0c9018 Tree: http://git-wip-us.apache.org/repos/asf/nifi-site/tree/ba0c9018 Diff: http://git-wip-us.apache.org/repos/asf/nifi-site/diff/ba0c9018 Branch: refs/heads/master Commit: ba0c9018dc3e2909593dd072d046a4d3faa83c55 Parents: 43105fd Author: Andre F de Miranda <[email protected]> Authored: Wed Sep 7 00:17:06 2016 +1000 Committer: Aldrin Piri <[email protected]> Committed: Tue Dec 27 15:34:10 2016 -0500 ---------------------------------------------------------------------- src/includes/topbar.hbs | 1 + src/pages/html/powered-by-nifi.hbs | 43 +++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi-site/blob/ba0c9018/src/includes/topbar.hbs ---------------------------------------------------------------------- diff --git a/src/includes/topbar.hbs b/src/includes/topbar.hbs index ba8e45c..49aab04 100644 --- a/src/includes/topbar.hbs +++ b/src/includes/topbar.hbs @@ -45,6 +45,7 @@ <li><a href="https://cwiki.apache.org/confluence/display/NIFI/Contributor+Guide">Contributor Guide</a></li> <li><a href="mailing_lists.html">Mailing Lists</a></li> <li><a href="people.html">People</a></li> + <li><a href="powered-by-nifi.html">Powered by NiFi</a></li> </ul> </li> <li class="has-dropdown"> http://git-wip-us.apache.org/repos/asf/nifi-site/blob/ba0c9018/src/pages/html/powered-by-nifi.hbs ---------------------------------------------------------------------- diff --git a/src/pages/html/powered-by-nifi.hbs b/src/pages/html/powered-by-nifi.hbs new file mode 100644 index 0000000..777e3d4 --- /dev/null +++ b/src/pages/html/powered-by-nifi.hbs @@ -0,0 +1,43 @@ +--- +title: Powered by NiFi - Companies & Organizations using Apache NiFi +--- + +<div class="large-space"></div> +<div class="row"> + <div class="large-12 columns"> + <h1 class="nifi-txt"> + <span> + Powered by Apache <span class="ni">ni</span><span class="fi">fi</span> + </span> + </h1> + </div> +</div> +</div> +<div class="row"> + <p class="description">Below is a sample of companies and organisations using Apache NiFi</p> +</div> +<div class="row"> + <div class="large-12 columns"> + <table> + <tr> + <th>Company / Organization</th> + <th>Industry</th> + <th>Summary</th> + </tr> + <tr> + <td><a href="https://macquarietelecomgroup.com">Macquarie Telecom Group</td> + <td>Cloud and Telecommunications</td> + <td>Uses Apache NiFi to securely and reliably transfer, transform, enrich and deliver billions of + individual events per day (i.e. security logs, system metrics, aggregated data sets, etc) across + multiple datacenters.</td> + </tr> + </table> + </div> +</div> +<div class="row"> + <div class="large-12 columns"> + <p>To add yourself to this list, submit a pull request to <a href="https://github.com/apache/nifi-site/">nifi-site</a> or + send and email to the users mailing list with the organization name, industry and a brief description on how Apache NiFi + is used to help your organization.</p> + </div> +</div> \ No newline at end of file
