You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by wa...@apache.org on 2021/06/29 21:41:19 UTC

[openoffice-project] 01/02: Update base scripts

This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch preview/refresh
in repository https://gitbox.apache.org/repos/asf/openoffice-project.git

commit 680615d8f1edc9afd4d64d41a8208c4b7fc44175
Author: Dave Fisher <da...@davefisher.tech>
AuthorDate: Tue Jun 29 14:38:25 2021 -0700

    Update base scripts
---
 theme/openoffice/templates/base.html | 39 ++++++++++++++++++++++++++++++++----
 1 file changed, 35 insertions(+), 4 deletions(-)

diff --git a/theme/openoffice/templates/base.html b/theme/openoffice/templates/base.html
index bf993fc..53af3fa 100644
--- a/theme/openoffice/templates/base.html
+++ b/theme/openoffice/templates/base.html
@@ -26,9 +26,23 @@
 <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
 <link rel="icon" href="/favicon.ico" type="image/x-icon" />
 <link href="/theme/css/openoffice.css" rel="stylesheet" type="text/css">
-<script src="https://www.apachecon.com/event-images/snippet.js"></script>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 {% endblock %}
+    <!-- Start load of stylesheets (will need to upgrade periodically) -->
+    <link rel="stylesheet"
+      href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
+      integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
+      crossorigin="anonymous">
+    <link rel="stylesheet"
+      href="https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/3.0.1/github-markdown.min.css"
+      crossorigin="anonymous">
+    <!-- Override css for this site. You can do this inline as shown here or with a site asset. See comment.-->
+    <style>
+      {% include "styles.css" %}
+
+    </style>
+    <!--<link rel="stylesheet" href="/styles/styles.css">-->
+    <!-- End stylesheets -->
 </head>
 
 <body>
@@ -47,8 +61,8 @@
     {% endblock %}
   </div>
 
-  <div id="footera">
-
+  <footer class="navbar-expand-lg navbar-light bg-light">
+    <div class="footer" id="footer">
     <div id="asfbanner">
       <p>
          <a class="acevent" data-format="wide" data-mode="light" data-event="random"></a>
@@ -70,7 +84,24 @@
       </p>
 
     </div>
-  </div>
+    </div>
+  </footer>
+    <!-- Start the loading of javascript frameworks (will need to upgrade periodically) -->
+    <script src="https://www.apachecon.com/event-images/snippet.js"></script>
+    <script
+      src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.slim.min.js"
+      integrity="sha512-6ORWJX/LrnSjBzwefdNUyLCMTIsGoNP6NftMy2UAm1JBm6PRZCO1d7OHBStWpVFZLO+RerTvqX/Z9mBFfCJZ4A=="
+      crossorigin="anonymous"></script>
+    <script
+      src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
+      integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
+      crossorigin="anonymous"></script>
+    <script
+      src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
+      integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
+      crossorigin="anonymous"></script>
+    <!-- End the loading of javascript frameworks -->
 
+    <!-- Source: {{ page.relative_source_path }}; Template: {{ page.default_template }}; Url: {{ page.url }} -->
 </body>
 </html>