Vinay Vishal | 7c4c4fc | 2019-01-28 12:01:04 +0530 | [diff] [blame] | 1 | <#-- a footer template fragment included in the page template --> |
| 2 | <hr /> |
| 3 | |
| 4 | <table width="90%" id="bottom-nav" cellspacing="0" cellpadding="0"> |
| 5 | <colgroup> |
| 6 | <col width="12%"/> |
| 7 | <col width="12%"/> |
| 8 | <col width="*"/> |
| 9 | </colgroup> |
| 10 | <tr> |
| 11 | <#if content.prev??> |
| 12 | <td align="left"> |
| 13 | <a href="${content.prev}"> |
| 14 | <span class=" vector-font"><i class="fa fa-arrow-circle-left" aria-hidden="true"></i></span> |
| 15 | <span style="position:relative;top:-2px;">Previous</span> |
| 16 | </a> |
| 17 | </td> |
| 18 | </#if> |
| 19 | |
| 20 | <#if content.next??> |
| 21 | <td align="left"> |
| 22 | <a href="${content.next}"> |
| 23 | <span class="vector-font"><i class="fa fa-arrow-circle-right vector-font" aria-hidden="true"></i></span> |
| 24 | <span style="position:relative;top:-2px;">Next</span> |
| 25 | </a> |
| 26 | </td> |
| 27 | </#if> |
| 28 | |
| 29 | <td align="right"> |
| 30 | <a href="toc.html"> |
| 31 | <span class="vector-font"><i class="fa fa-list vector-font" aria-hidden="true"></i></span> |
| 32 | <span style="position:relative;top:-2px;">Contents</span> |
| 33 | </a> |
| 34 | </td> |
| 35 | </tr> |
| 36 | </table> |
| 37 | |
| 38 | <span id="copyright"> |
Bill Shannon | 00d11dd | 2019-03-27 13:54:43 -0700 | [diff] [blame] | 39 | <img src="img/eclipse_foundation_logo_tiny.png" height="20px" alt="Eclipse Foundation Logo" align="top"/> |
Vinay Vishal | 7c4c4fc | 2019-01-28 12:01:04 +0530 | [diff] [blame] | 40 | <span >Copyright © 2019, Oracle and/or its affiliates. All rights reserved.</span> |
| 41 | </span> |
| 42 | |
Bill Shannon | 00d11dd | 2019-03-27 13:54:43 -0700 | [diff] [blame] | 43 | <p align="center" class="beta">${config.status!}</p> |
| 44 | |
Vinay Vishal | 7c4c4fc | 2019-01-28 12:01:04 +0530 | [diff] [blame] | 45 | </body> |
| 46 | </html> |