2bcaf8246b
Key change is using the new `absolute_url` and `relative_url` filters http://jekyllrb.com/news/2016/10/06/jekyll-3-3-is-here/ https://github.com/blog/2277-what-s-new-in-github-pages-with-jekyll-3-3
23 lines
817 B
HTML
23 lines
817 B
HTML
<div class="homeContainer">
|
|
<div class="homeSplashFade">
|
|
<div id="home_wrap" class="wrapper homeWrapper">
|
|
<div id="inner">
|
|
<h2 id="project_tagline">{{ site.tagline }}</h2>
|
|
<section id="intro">
|
|
<p>{% if page.excerpt %}{{ page.excerpt | strip_html }}{% else %}{{ site.description }}{% endif %}</p>
|
|
</section>
|
|
<div id="promo" class="section promoSection">
|
|
{% for promo in site.data.promo %}
|
|
<div class="promoRow">
|
|
{% include plugins/{{promo.type}}.html href=promo.href text=promo.text children=promo.children %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
<div class="projectLogo">
|
|
<img src="{{ relative_url }}/static/logo.svg" alt="{{ site.title }}">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|