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 1528b674fe472af58845a7eaceeffb0579a33d43 Author: Bertty Contreras-Rojas <[email protected]> AuthorDate: Sun Feb 14 12:55:04 2021 -0300 update the footer --- Gemfile.lock | 7 +++++++ _config.yml | 2 +- _includes/footer.html | 38 +++++++++++++++++++------------------- _layouts/publications.html | 2 +- 4 files changed, 28 insertions(+), 21 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 68f5115..56d679e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -3,6 +3,8 @@ GEM specs: addressable (2.7.0) public_suffix (>= 2.0.2, < 5.0) + asciidoctor (2.0.12) + coderay (1.1.3) colorator (1.1.0) concurrent-ruby (1.1.8) em-websocket (0.5.2) @@ -29,6 +31,9 @@ GEM rouge (~> 3.0) safe_yaml (~> 1.0) terminal-table (~> 2.0) + jekyll-asciidoc (2.1.1) + asciidoctor (>= 1.5.0) + jekyll (>= 2.3.0) jekyll-sass-converter (2.1.0) sassc (> 2.0.1, < 3.0) jekyll-watch (2.2.1) @@ -61,7 +66,9 @@ PLATFORMS universal-darwin-20 DEPENDENCIES + coderay (~> 1.1.0) jekyll (~> 4.2) + jekyll-asciidoc (~> 2.1.1) BUNDLED WITH 2.2.9 diff --git a/_config.yml b/_config.yml index 27cdcb5..15e1944 100644 --- a/_config.yml +++ b/_config.yml @@ -1,4 +1,4 @@ -url: "https://wayang.apache.org" +url: "http://127.0.0.1:4000" baseurl: "/" title: "Apache Wayang" collections: diff --git a/_includes/footer.html b/_includes/footer.html index 90700a2..05bdf5d 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,20 +1,20 @@ -<nav class="navbar fixed-bottom navbar-light bg-light position-relative mb-n3 mx-n3 mb-4" 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 the [...] - </p> - - <p> - Copyright © 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> +<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 © 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> \ No newline at end of file + </nav> +</footer> diff --git a/_layouts/publications.html b/_layouts/publications.html index 78c63ae..97acfa5 100644 --- a/_layouts/publications.html +++ b/_layouts/publications.html @@ -9,7 +9,7 @@ layout: post {% for pub in site.publications reversed %} <div class="col-md-6"> <article class="blog-post text-center"> - <a class="post-title " href="{{pub.url}}"> + <a class="post-title" href="{{pub.url | absolute_url}}"> <img src="{{ pub.img-thumb | absolute_url }}" class="w-100" alt="post-thumb"> </a> {% if pub.link-external == false %}
