jgazeau / shadocs

Shadocs Theme for Hugo
https://jgazeau.github.io/shadocs/
MIT License
50 stars 19 forks source link

[bug]: Coulmns in <body> #224

Closed Devarajan89 closed 9 months ago

Devarajan89 commented 9 months ago

Steps that lead to the issue

when I add a custom footer inside the layout custom-footer.html its showing right side in body. 1

Expected behavior

Footer should be in bottom of the container. There is a missing column inside the main.html

Reproducer

??

Solution?

Yes, Including new columns inside the columns(Nested column) i solved it to bring the custom footer in bottom of the content. 2s

    <div class="columns is-mobile is-paddingless is-marginless"
    id="mainContainer">
         sidebar
         content
      <div class="columns">
        <div class="column">
           includes-end
          custom-footer
        </div>
      </div>
  </body>
Devarajan89 commented 9 months ago

Sorry, Mistake is from side..