This is an automated email from the ASF dual-hosted git repository. abesto pushed a commit to branch sync-from-githubio in repository https://gitbox.apache.org/repos/asf/incubator-zipkin-website.git
commit efa7178ed4cb090b334c4656cd5f35c7dc10fc0d Author: Brian Devins-Suresh <[email protected]> AuthorDate: Wed Mar 20 20:58:40 2019 -0400 First pass at meeting ASF requirements for website (#1) --- .gitignore | 1 + _includes/sidebar.html | 12 +++++++++--- _layouts/default.html | 15 +++++++++++++++ public/css/zipkin.css | 8 ++++++++ 4 files changed, 33 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 45c1505..12fbc18 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ _site .sass-cache .jekyll-metadata +.idea diff --git a/_includes/sidebar.html b/_includes/sidebar.html index 7a3d507..8a04b50 100644 --- a/_includes/sidebar.html +++ b/_includes/sidebar.html @@ -21,9 +21,15 @@ {% endif %} {% endif %} {% endfor %} - </nav> - - <p>© {{ site.time | date: '%Y' }}. All rights reserved.</p> + <nav> + <span>Apache Links</span> + <a class="sidebar-nav-item" href="http://www.apache.org/">Apache Software Foundation</a> + <a class="sidebar-nav-item" href="http://www.apache.org/licenses/">License</a> + <a class="sidebar-nav-item" href="http://www.apache.org/events/current-event">Events</a> + <a class="sidebar-nav-item" href="http://www.apache.org/foundation/thanks">Thanks</a> + <a class="sidebar-nav-item" href="http://www.apache.org/security">Security</a> + <a class="sidebar-nav-item" href="http://www.apache.org/foundation/sponsorship">Sponsor Apache</a> + </nav> </div> </div> diff --git a/_layouts/default.html b/_layouts/default.html index c438350..54b1e3f 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -11,5 +11,20 @@ {{ content }} </div> + <footer class="content container"> + <p class="disclaimer"> + <strong>Disclaimer</strong><br/> + Apache Zipkin (incubating) is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored + by 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 project has yet to be fully endorsed by the ASF. + </p> + <p class="notice"> + © {{ site.time | date: '%Y' }}, the Apache Software Foundation, Apache Zipkin, Zipkin, Apache, the Apache + feather Logo, and the Apache Zipkin project logo are either registered trademarks or trademarks of the Apache + Software Foundation. + </p> + </footer> </body> </html> diff --git a/public/css/zipkin.css b/public/css/zipkin.css index 720163b..0696911 100644 --- a/public/css/zipkin.css +++ b/public/css/zipkin.css @@ -51,3 +51,11 @@ table.wide-table td { table.wide-table th { font-size: 0.8em; } + +p.disclaimer { + font-size: 0.8em; +} + +p.notice { + font-size: 0.8em; +} \ No newline at end of file
