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

jeffreyvo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 9ccf9bc  fix about page styling (#143)
9ccf9bc is described below

commit 9ccf9bccf1af4aea730c71f19c003f1bde055701
Author: Abhinandan Kaushik <[email protected]>
AuthorDate: Wed Feb 4 20:26:23 2026 +0530

    fix about page styling (#143)
    
    * fixed:about
    
    * Update content/theme/templates/menu.html
    
    Co-authored-by: Copilot <[email protected]>
    
    ---------
    
    Co-authored-by: Copilot <[email protected]>
---
 content/theme/templates/menu.html |  2 +-
 content/theme/templates/page.html | 30 ++++++++++++++++++++++++++++++
 2 files changed, 31 insertions(+), 1 deletion(-)

diff --git a/content/theme/templates/menu.html 
b/content/theme/templates/menu.html
index 72e78e5..c0f3ab2 100644
--- a/content/theme/templates/menu.html
+++ b/content/theme/templates/menu.html
@@ -1,7 +1,7 @@
 <!-- nav bar -->
 <nav class="navbar navbar-expand-lg navbar-dark bg-dark" aria-label="Fifth 
navbar example">
     <div class="container-fluid">
-        <a class="navbar-brand" href="/blog"><img 
src="/blog/images/logo_original4x.png" style="height: 32px;"/> Apache 
DataFusion Blog</a>
+        <a class="navbar-brand" href="/blog/"><img 
src="/blog/images/logo_original4x.png" style="height: 32px;"/> Apache 
DataFusion Blog</a>
         <button class="navbar-toggler" type="button" data-bs-toggle="collapse" 
data-bs-target="#navbarADP" aria-controls="navbarADP" aria-expanded="false" 
aria-label="Toggle navigation">
             <span class="navbar-toggler-icon"></span>
         </button>
diff --git a/content/theme/templates/page.html 
b/content/theme/templates/page.html
new file mode 100644
index 0000000..779b3fc
--- /dev/null
+++ b/content/theme/templates/page.html
@@ -0,0 +1,30 @@
+{% block head %}
+<!doctype html>
+<html class="no-js" lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8">
+    <meta http-equiv="x-ua-compatible" content="ie=edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>{{ page.title }} - {{SITENAME}}</title>
+    {% include "styles.html" %}
+  </head>
+  <body class="d-flex flex-column h-100">
+  <main class="flex-shrink-0">
+    {% include "menu.html" %}
+    
+    <div id="contents">
+      <div class="bg-white p-4 p-md-5 rounded">
+        <div class="row justify-content-center">
+          <div class="col-12 col-md-8 main-content">
+            <h1>{{ page.title }}</h1>
+            {{ page.content }}
+          </div>
+        </div>
+      </div>
+    </div>
+    
+    {% include "footer.html" %}
+  </main>
+  </body>
+</html>
+{% endblock %}


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to