You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wayang.apache.org by be...@apache.org on 2021/02/15 06:09:11 UTC

[incubator-wayang-website] 17/29: add container to footer and page that where missing it

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

bertty pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/incubator-wayang-website.git

commit 27e982bdde02e0b0a08192854ef3615abd8d82e9
Author: Bertty Contreras-Rojas <be...@scalytics.io>
AuthorDate: Sun Feb 14 16:06:59 2021 -0300

    add container to footer and page that where missing it
---
 _includes/footer.html     | 31 +++++++++++++++++--------------
 _layouts/publication.html | 29 ++++++++++++++++-------------
 2 files changed, 33 insertions(+), 27 deletions(-)

diff --git a/_includes/footer.html b/_includes/footer.html
index 05bdf5d..1368807 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -1,20 +1,23 @@
 <footer class="footer position-sticky sticky-bottom  mb-n3 mx-n3  mb-4">
     <nav class="navbar navbar-light bg-light "  style="background: #A6A6A6;">
-        <div class="row justify-content-center">
-            <div class="col-10 text-center">
-                <a href="http://incubator.apache.org/">
-                    <img src="{{ "assets/img/egg-logo.png" | absolute_url }}">
-                </a>
-                <br />
-                <p style="text-align: justify">
-                    Apache Wayang is an effort undergoing Incubation at The Apache Software Foundation (ASF), sponsored by the Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that [...]
-                </p>
-                <p>
-                    Copyright &#169; 2021 The Apache Software Foundation.<br />
-                    Licensed under the Apache License, Version 2.0.<br />
-                    Apache, the Apache Feather logo, and the Apache Incubator project logo are trademarks of The Apache Software Foundation.
-                </p>
+        <div class="container">
+            <div class="row justify-content-center">
+                <div class="col-12 text-center">
+                    <a href="http://incubator.apache.org/">
+                        <img src="{{ "assets/img/egg-logo.png" | absolute_url }}">
+                    </a>
+                    <br />
+                    <p style="text-align: justify">
+                        Apache Wayang is an effort undergoing Incubation at The Apache Software Foundation (ASF), sponsored by the Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate  [...]
+                    </p>
+                    <p>
+                        Copyright &#169; 2021 The Apache Software Foundation.<br />
+                        Licensed under the Apache License, Version 2.0.<br />
+                        Apache, the Apache Feather logo, and the Apache Incubator project logo are trademarks of The Apache Software Foundation.
+                    </p>
+                </div>
             </div>
         </div>
+
     </nav>
 </footer>
diff --git a/_layouts/publication.html b/_layouts/publication.html
index ac752eb..f207fe8 100644
--- a/_layouts/publication.html
+++ b/_layouts/publication.html
@@ -1,24 +1,27 @@
 ---
 layout: post
 ---
-<div class="row justify-content-md-center mb-4">
-    <div class="col-10 ">
-        <div class="post-info-wrapper">
-            <p class="italic">By <span class="bold">{{page.authors}}</span> on <span class="bold">{{page.year}}</span></p>
-        </div>
-        <hr />
+
+<div class="container">
+    <div class="row justify-content-md-center mb-4">
+        <div class="col-12 ">
+            <div class="post-info-wrapper">
+                <p class="italic">By <span class="bold">{{page.authors}}</span> on <span class="bold">{{page.year}}</span></p>
+            </div>
+            <hr />
             {{content}}
-        <hr />
-    </div>
-    <div class="col-10 text-center">
-        {% if page.link-external == false %}
+            <hr />
+        </div>
+        <div class="col-10 text-center">
+            {% if page.link-external == false %}
             <a href="{{ page.link-paper | relative_url }}" class="btn btn-success">
                 <i class="far fa-file-pdf"></i> Download
             </a>
-        {% else %}
+            {% else %}
             <a href="{{ page.link-paper}}" class="btn btn-success">
                 <i class="fas fa-external-link-alt"></i> Go External Link
             </a>
-        {% endif %}
+            {% endif %}
+        </div>
     </div>
-</div>
\ No newline at end of file
+</div>