The update from July 6, 2017 comes with new features - standard header and footer sections with color variations.
They are represented on the following pages:
<div class="header--standard" id="header--standard"> ... </div>
<div class="header--standard header--standard-dark" id="header--standard"> ... </div>
It is required to add class .has-standard-header into <body> tag for proper work of the template when using the standard header:
<body class="has-standard-header">...</body>
Standard footer is also represented in 2 color variations:
<div class="footer" id="footer">...</div>
<div class="footer footer--dark" id="footer">...</div>
There are 2 variants of content positioning in header as well as in footer:
<div class="footer" id="footer">
<div class="container">
....
</div>
</div>
<div class="header--standard" id="header--standard">
<div class="container-fluid">
...
</div>
</div>