Static Jenkins Site Generator
- Private Jenkins job scraping w/API key
- Added Gilroy font to match main public website
- Link back to ONF website for products
- Add more products
Change-Id: I3ed2dc1e371c564ee483ab83fd110a88d818bca7
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..ca9bf0f
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,31 @@
+{#
+SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
+SPDX-License-Identifier: Apache-2.0
+#}
+<html>
+<head>
+ {% block head %}
+ <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">
+ <link rel="stylesheet" href="/style.css" />
+ <script src="/scripts/list.min.js"></script>
+ <title>{% block title %}{{ title }}{% endblock %}</title>
+ {% endblock %}
+</head>
+<body>
+ <div class="header">
+ <a href="/"><img class="logo" src="/images/onf_logo.png" height="30px" width="30px"/></a>
+ <h1>{% block header %}{{ title }}{% endblock %}</h1>
+ </div>
+ <div class="content">
+ {% block content %}
+ <p>Base content, replace this block</p>
+ {% endblock %}
+ </div>
+ <footer class="footer">
+ {% block footer %}
+ © 2020 <a href="https://opennetworking.org/">Open Networking Foundation</a><br/>
+ <div class="buildtime">Page generated at {{ buildtime }}.</right>
+ {% endblock %}
+ </footer>
+</body>
+</html>