You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which I am really not a fan of. I like seeing the overall structure of a template and having proper matched closing tags on things like <html> and <body>. What's worse is the <div class="site-wrapper"> depends on a closing </div> tag that is in the footer.html. When you look at that partial, you have no idea what the closing div corresponds to.
Todos:
Pull out the "hanging" closing tags and move them up into the actual templates.
look into replacing the jquery script calls etc. that are at the bottom of the footer
see how the custom script section works from a theme user's perspective.
The text was updated successfully, but these errors were encountered:
Currently the footer partial looks like this:
When this partial is used in templates, it ends up looking something like this:
Which I am really not a fan of. I like seeing the overall structure of a template and having proper matched closing tags on things like
<html>
and<body>
. What's worse is the<div class="site-wrapper">
depends on a closing</div>
tag that is in thefooter.html
. When you look at that partial, you have no idea what the closing div corresponds to.Todos:
The text was updated successfully, but these errors were encountered: