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

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


The following commit(s) were added to refs/heads/main by this push:
     new c964105  Create page.html
c964105 is described below

commit c964105a05d0a583c1497b8e0ef68741930585c8
Author: Gavin McDonald <[email protected]>
AuthorDate: Sun Oct 8 11:30:17 2023 -0300

    Create page.html
    
    Add a default theme and template
---
 theme/templates/page.html | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/theme/templates/page.html b/theme/templates/page.html
new file mode 100644
index 0000000..a19543b
--- /dev/null
+++ b/theme/templates/page.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <title>{{ page.title }} - {{SITENAME}}</title>
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" 
media="screen" />
+    <link rel="stylesheet" type="text/css" href="css/site.css" media="screen" 
/>
+    <!--
+    -->
+</head>
+<body>
+    <div class="container">
+            {% if article %}
+            {{ article.content }}
+            {% else %}
+            {{ page.content }}
+            {% endif %}
+    </div>
+        <div class="row">
+            <footer class="span8 offset2" align="center">
+                <ul>
+                    <li><a 
href="https://www.apache.org/licenses/";>License</a></li>
+                    <li><a 
href="https://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li>
+                    <li><a 
href="https://www.apache.org/foundation/thanks.html";>Thanks</a></li>
+                    <li><a 
href="https://www.apache.org/security/";>Security</a></li>
+                    <li><a 
href="https://privacy.apache.org/policies/privacy-policy-public.html";>Privacy 
Policy</a></li>
+                    <li><a href="https://www.apache.org/";>Apache Software 
Foundation</a></li>
+                </ul>
+                <p>Apache Buildsteam ,Buildstream,  Apache, the Apache feather 
logo, and the Apache Buildstream project logo are trademarks of The Apache 
Software Foundation.</p>
+                <p>All other marks mentioned may be trademarks or registered 
trademarks of their respective owners.</p>
+            </footer>
+        </div>
+    </div>
+</body>
+</html>

Reply via email to