diff options
author | Doge <[email protected]> | 2021-05-09 17:48:44 +0800 |
---|---|---|
committer | Doge <[email protected]> | 2021-05-09 17:48:44 +0800 |
commit | e17c8354fcc5fdb3e7d66363e0acc79650577af3 (patch) | |
tree | a153c9a381e99f4382b3837b3826f6d960597684 /layout/layout.ejs | |
parent | 33c134891460fcc379dc5d835299a95c4aad0710 (diff) | |
download | chromate-e17c8354fcc5fdb3e7d66363e0acc79650577af3.tar.gz chromate-e17c8354fcc5fdb3e7d66363e0acc79650577af3.tar.bz2 chromate-e17c8354fcc5fdb3e7d66363e0acc79650577af3.zip |
Code enhancement
Diffstat (limited to 'layout/layout.ejs')
-rw-r--r-- | layout/layout.ejs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/layout/layout.ejs b/layout/layout.ejs index 96d7f6a..d204ff4 100644 --- a/layout/layout.ejs +++ b/layout/layout.ejs @@ -4,7 +4,13 @@ <body> <%- partial('_partial/header') %> <div class="wrapper"> - <%- body %> + <section class="hero"> + <div class="hero-body"> + <div class="container"> + <%- body %> + </div> + </div> + </section> </div> <%- partial('_partial/footer') %> </body> |