index.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ---
  2. layout: default
  3. title: Home
  4. ---
  5. <aside class="screenshots">
  6. {% include donate.html %}
  7. <br>
  8. <small><em>Be aware of transaction fees. Review the <a href="{{ site.baseurl }}/donate.html">donation</a> page for information.</em></small>
  9. <h3>Screenshots</h3>
  10. {% for screenshot in site.data.screenshots["v0.3.5"] %}
  11. {% if screenshot.sample %}
  12. <a href="{{ site.baseurl }}/{{ screenshot.large }}"><img class="screenshot" alt="{{ site.baseurl }}/{{ screenshot.large }}" src="{{ site.baseurl }}/{{ screenshot.small }}" width="200" height="150"/></a>
  13. {% endif %}
  14. {% endfor %}
  15. <a href="screenshots.html">More Screenshots</a>
  16. </aside>
  17. <article id="pagebody">
  18. <h2>Welcome</h2>
  19. <p>
  20. SuperTux is a free classic 2D jump'n run sidescroller game in a style
  21. similar to the original Super Mario games covered under the
  22. <a href="http://www.gnu.org/copyleft/gpl.html">GNU GPL</a>.
  23. </p>
  24. <hr/>
  25. <section class="news">
  26. <div class="datestamp">
  27. <p>{{ site.posts.first.date | date: "%b %-d, %Y" }}</p>
  28. </div>
  29. <h2><a href="{{ post.url | prepend: site.baseurl }}">{{ site.posts.first.title }}</a></h2>
  30. {{ site.posts.first.content }}
  31. </section>
  32. <hr/>
  33. <p>Read more news posts <a href="{{ site.baseurl }}/news/">in the news section</a>.</p>
  34. </article>