Zack Williams | 712caf6 | 2020-04-28 13:37:41 -0700 | [diff] [blame] | 1 | {# |
| 2 | SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org> |
| 3 | SPDX-License-Identifier: Apache-2.0 |
| 4 | #} |
| 5 | <html> |
| 6 | <head> |
| 7 | {% block head %} |
| 8 | <link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;1,400;1,700&display=swap" rel="stylesheet"> |
| 9 | <link rel="stylesheet" href="/style.css" /> |
| 10 | <script src="/scripts/list.min.js"></script> |
| 11 | <title>{% block title %}{{ title }}{% endblock %}</title> |
| 12 | {% endblock %} |
| 13 | </head> |
| 14 | <body> |
| 15 | <div class="header"> |
| 16 | <a href="/"><img class="logo" src="/images/onf_logo.png" height="30px" width="30px"/></a> |
| 17 | <h1>{% block header %}{{ title }}{% endblock %}</h1> |
| 18 | </div> |
| 19 | <div class="content"> |
| 20 | {% block content %} |
| 21 | <p>Base content, replace this block</p> |
| 22 | {% endblock %} |
| 23 | </div> |
| 24 | <footer class="footer"> |
| 25 | {% block footer %} |
| 26 | © 2020 <a href="https://opennetworking.org/">Open Networking Foundation</a><br/> |
| 27 | <div class="buildtime">Page generated at {{ buildtime }}.</right> |
| 28 | {% endblock %} |
| 29 | </footer> |
| 30 | </body> |
| 31 | </html> |