page.html 1.6 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="page">
  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. <article class="page">
  31. <h1>{{ page.title }}</h1>
  32. <div class="article-wrap">
  33. {{ content }}
  34. {% if page.share != false %}
  35. <hr />
  36. {% include _social-share.html %}
  37. {% endif %}
  38. </div><!-- /.article-wrap -->
  39. {% if site.owner.disqus-shortname and page.comments == true %}
  40. <section id="disqus_thread"></section><!-- /#disqus_thread -->
  41. {% endif %}
  42. </article>
  43. </div><!-- /#index -->
  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>