Repository: incubator-griffin-site Updated Branches: refs/heads/master 3e598d278 -> 5b052896e
http://git-wip-us.apache.org/repos/asf/incubator-griffin-site/blob/5b052896/themes/landscape/_config.yml ---------------------------------------------------------------------- diff --git a/themes/landscape/_config.yml b/themes/landscape/_config.yml index 4c1bb96..2805bee 100644 --- a/themes/landscape/_config.yml +++ b/themes/landscape/_config.yml @@ -16,6 +16,7 @@ widgets: - tagcloud - archive - recent_posts +- logo # display widgets at the bottom of index pages (pagination == 2) index_widgets: http://git-wip-us.apache.org/repos/asf/incubator-griffin-site/blob/5b052896/themes/landscape/layout/_partial/footer.ejs ---------------------------------------------------------------------- diff --git a/themes/landscape/layout/_partial/footer.ejs b/themes/landscape/layout/_partial/footer.ejs index e5b3e63..3aca618 100644 --- a/themes/landscape/layout/_partial/footer.ejs +++ b/themes/landscape/layout/_partial/footer.ejs @@ -4,7 +4,8 @@ <% } %> <div class="outer"> <div id="footer-info" class="inner"> - <a><img src="images/egg-logo.png"></img></a> + © <%= date(new Date(), 'YYYY') %> <%= config.author || config.title %><br> + <%= __('powered_by') %> <a href="http://hexo.io/" target="_blank">Hexo</a> </div> </div> </footer> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-griffin-site/blob/5b052896/themes/landscape/layout/_widget/logo.ejs ---------------------------------------------------------------------- diff --git a/themes/landscape/layout/_widget/logo.ejs b/themes/landscape/layout/_widget/logo.ejs new file mode 100644 index 0000000..2034e24 --- /dev/null +++ b/themes/landscape/layout/_widget/logo.ejs @@ -0,0 +1,5 @@ + <div class="widget-wrap"> + <div class="widget"> + <a><img src="images/egg-logo.png"></img></a> + </div> + </div> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-griffin-site/blob/5b052896/themes/landscape/source/css/_partial/footer.styl ---------------------------------------------------------------------- diff --git a/themes/landscape/source/css/_partial/footer.styl b/themes/landscape/source/css/_partial/footer.styl index cb5ab76..fe2fd24 100644 --- a/themes/landscape/source/css/_partial/footer.styl +++ b/themes/landscape/source/css/_partial/footer.styl @@ -1,5 +1,5 @@ #footer - /* background: color-footer-background */ + background: color-footer-background padding: 50px 0 border-top: 1px solid color-border color: color-grey
