Repository: incubator-apex-site Updated Branches: refs/heads/master c99d1fc38 -> 6860d7617
update copyright notice, add feather Project: http://git-wip-us.apache.org/repos/asf/incubator-apex-site/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-apex-site/commit/6860d761 Tree: http://git-wip-us.apache.org/repos/asf/incubator-apex-site/tree/6860d761 Diff: http://git-wip-us.apache.org/repos/asf/incubator-apex-site/diff/6860d761 Branch: refs/heads/master Commit: 6860d76170191faf968d61d570e6f064ae983fb1 Parents: c99d1fc Author: Andy Perlitch <[email protected]> Authored: Wed Sep 30 12:48:47 2015 -0700 Committer: Andy Perlitch <[email protected]> Committed: Wed Sep 30 12:48:47 2015 -0700 ---------------------------------------------------------------------- src/images/asf-feather.png | Bin 0 -> 41219 bytes src/less/footer.less | 19 +++++++++++++++++++ src/less/main.less | 1 + src/partials/footer.handlebars | 13 ++++++++++--- 4 files changed, 30 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-apex-site/blob/6860d761/src/images/asf-feather.png ---------------------------------------------------------------------- diff --git a/src/images/asf-feather.png b/src/images/asf-feather.png new file mode 100644 index 0000000..951e5e5 Binary files /dev/null and b/src/images/asf-feather.png differ http://git-wip-us.apache.org/repos/asf/incubator-apex-site/blob/6860d761/src/less/footer.less ---------------------------------------------------------------------- diff --git a/src/less/footer.less b/src/less/footer.less new file mode 100644 index 0000000..e823703 --- /dev/null +++ b/src/less/footer.less @@ -0,0 +1,19 @@ +#main-footer { + text-align: center; + color: @gray-light; + + #footer-feather { + width: 135px; + opacity: 0.8; + transition: opacity 0.25s; + margin-top: 12px; + display: inline-block; + &:hover { + opacity: 1; + } + img { + width: 100%; + } + + } +} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-apex-site/blob/6860d761/src/less/main.less ---------------------------------------------------------------------- diff --git a/src/less/main.less b/src/less/main.less index 4b870f3..6ab3b4d 100644 --- a/src/less/main.less +++ b/src/less/main.less @@ -1,4 +1,5 @@ @import "../../bower_components/bootstrap/less/bootstrap.less"; @import "./variables.less"; @import "./header.less"; +@import "./footer.less"; @import "./index.less"; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-apex-site/blob/6860d761/src/partials/footer.handlebars ---------------------------------------------------------------------- diff --git a/src/partials/footer.handlebars b/src/partials/footer.handlebars index 118b537..45a5b9f 100644 --- a/src/partials/footer.handlebars +++ b/src/partials/footer.handlebars @@ -1,14 +1,21 @@ <hr> <div class="container"> - <footer> - <p>© Apache Software Foundation 2015</p> + <footer id="main-footer"> + <p> + Copyright © <span id="copyright-year">2015</span> <a href="http://apache.org">The Apache Software Foundation</a>, + Licensed under the Apache License, Version 2.0<br> + Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br> + <a id="footer-feather" href="http://apache.org"><img src="/images/asf-feather.png" alt="The Apache Software Foundation"></a> + </p> </footer> </div> <!-- /container --> <!-- Placed at the end of the document so the pages load faster --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script src="/js/bootstrap.min.js"></script> - + <script> + $('#copyright-year').text((new Date()).getFullYear()); + </script> </body> </html>
