home.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!doctype html>
  2. <!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="fr"> <![endif]-->
  3. <!--[if (IE 7)&!(IEMobile)]><html class="no-js lt-ie9 lt-ie8" lang="fr"><![endif]-->
  4. <!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9" lang="fr"><![endif]-->
  5. <!--[if gt IE 8]><!--> <html class="no-js" lang="fr"><!--<![endif]-->
  6. <head>
  7. {% include _head.html %}
  8. </head>
  9. <body class="home">
  10. {% include _browser-upgrade.html %}
  11. {% include _navigation.html %}
  12. {% if page.image.feature %}
  13. <div class="image-wrap">
  14. <img src=
  15. {% if page.image.feature contains 'http' %}
  16. "{{ page.image.feature }}"
  17. {% else %}
  18. "{{ site.url }}/images/{{ page.image.feature }}"
  19. {% endif %}
  20. alt="{{ page.title }} feature image">
  21. {% if page.image.credit %}
  22. <span class="image-credit">Photo Credit: <a href="{{ page.image.creditlink }}">{{ page.image.credit }}</a></span>
  23. {% endif %}
  24. </div><!-- /.image-wrap -->
  25. {% endif %}
  26. <div id="main" role="main">
  27. <div class="article-author-side">
  28. {% include _author-bio.html %}
  29. </div>
  30. <div id="index">
  31. <h3><a href="{{ site.url}}/posts/">Blog</a></h3>
  32. {% for post in site.posts limit:5 %}
  33. <article>
  34. {% if post.link %}
  35. <h2 class="link-post"><a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a> <a href="{{ post.link }}" target="_blank" title="{{ post.title }}"><i class="fa fa-link"></i></a></h2>
  36. {% else %}
  37. <h2><a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h2>
  38. <p>{{ post.excerpt | strip_html | truncate: 160 }}</p>
  39. {% endif %}
  40. </article>
  41. {% endfor %}
  42. </div><!-- /#index -->
  43. </div><!-- /#main -->
  44. <div class="footer-wrap">
  45. <footer>
  46. {% include _footer.html %}
  47. </footer>
  48. </div><!-- /.footer-wrap -->
  49. {% include _scripts.html %}
  50. </body>
  51. </html>