index.html 1.2 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. {% for post in site.posts %}
  25. <hr/>
  26. <section class="news">
  27. <div class="datestamp">
  28. <p>{{ post.date | date: "%b %-d, %Y" }}</p>
  29. </div>
  30. <h2><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h2>
  31. {{ post.content }}
  32. </section>
  33. {% endfor %}
  34. </article>