1<div class="headerContainer"> 2 <div id="header_wrap" class="wrapper headerWrapper"> 3 <div class="inner"> 4 <img class="projectLogo" height="200px" src="{{ '/static/logo.svg' }}" alt="{{ site.title }}" title="{{ site.title }}" /> 5 <h1 id="project_title">{{ site.title }}</h1> 6 <h2 id="project_tagline" class="fbossFontLight">{{ site.tagline }}</h2> 7 8 <section id="intro"> 9 <p>{% if page.excerpt %}{{ page.excerpt | strip_html }}{% else %}{{ site.description }}{% endif %}</p> 10 </section> 11 <div id="promo" class="section promoSection"> 12 {% for promo in site.data.promo %} 13 {% include plugins/{{promo.type}}.html button_href=promo.href button_text=promo.text %} 14 <div class="gridClear"></div> 15 {% endfor %} 16 </div> 17 </div> 18 </div> 19</div> 20