header.html 831 B

1234567891011121314151617181920
  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' | relative_url }}" 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. <section id="intro">
  8. <p>{% if page.excerpt %}{{ page.excerpt | strip_html }}{% else %}{{ site.description }}{% endif %}</p>
  9. </section>
  10. <div id="promo" class="section promoSection">
  11. {% for promo in site.data.promo %}
  12. {% include plugins/{{promo.type}}.html button_href=promo.href button_text=promo.text %}
  13. <div class="gridClear"></div>
  14. {% endfor %}
  15. </div>
  16. </div>
  17. </div>
  18. </div>