diff options
Diffstat (limited to 'layout/_partial')
-rw-r--r-- | layout/_partial/footer.ejs | 9 | ||||
-rw-r--r-- | layout/_partial/header.ejs | 3 |
2 files changed, 12 insertions, 0 deletions
diff --git a/layout/_partial/footer.ejs b/layout/_partial/footer.ejs index e69de29..e9b8c64 100644 --- a/layout/_partial/footer.ejs +++ b/layout/_partial/footer.ejs @@ -0,0 +1,9 @@ +<footer class="footer"> + <div class="footer-copyright"> + Copyright © <%= date(Date.now(), 'YYYY') %> <a href="<%= url_for('/') %>"><%= config.title %></a> + </div> + <div class="footer-power"> + <p>Powered by <a href="https://hexo.io" target="_blank">Hexo</a> | Theme - <a href="https://github.com/guiqiqi/Chromate" + target="_blank">Chromate</a></p> + </div> +</footer>
\ No newline at end of file diff --git a/layout/_partial/header.ejs b/layout/_partial/header.ejs index e96f62b..1ef4ef8 100644 --- a/layout/_partial/header.ejs +++ b/layout/_partial/header.ejs @@ -2,6 +2,9 @@ <div class="header-title"> <%= config.title %> </div> + <div class="header-desc"> + <%= config.description %> + </div> <nav class="header-navbar"> <ul class="header-menu"> <% for (let index in theme.navbar) { %> |