I am interested in working with bootstrap + Grav and am curious if there is a reason why I would not want to add bootstrap code inside my template files.
For example I am setting up a hidden global folder to create widgets for different places in my theme like the header area. In my inheritance theme I am modifying the the base.html.twig file like the following which includes the bootstrap column classes. I am interested in any thoughts on setting things up this way and if it may be something that I should not be doing.
<header id="header">
<div class="container">
<div class="row">
<div id="logo" class="col-md-2">
<h3><a href="{{ base_url == '' ? '/' : base_url }}">{{ config.site.title }}</a></h3>
</div>
<div id="header-widget" class="col-md-10">
{{ page.find('/_global/HeaderWidget').content }}</div>
</div>
</div>
</header>
Thank You.