~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to templates/mainpage.html

  • Committer: Holger Rapp
  • Date: 2009-02-26 22:38:49 UTC
  • Revision ID: sirver@kallisto.local-20090226223849-1563ij0uuw0lz0zu
First version of widelands online help

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 
11
11
{% load news %}
12
12
{% block extra_head %}
13
 
<meta name="google-site-verification" content="1A5uFV_zNuXazJ46-572-_lLzcCTEQ77iHaSPFZd53Y" />
14
13
<link rel="stylesheet" type="text/css" media="all" href="{{ MEDIA_URL }}/css/news.css" />
15
14
<link rel="alternate" type="application/rss+xml" title="Widelands News" href="/feeds/news/" />
16
15
 
17
16
{{ block.super}}{% endblock %}
18
17
{% block content %}
19
18
 
20
 
<div class="block_center">
21
 
    <h1>Welcome to Widelands.org</h1>
22
 
    <h3>Home of the free realtime strategy game and its community</h3>
23
 
    <br/>
24
 
    <img src='{{ MEDIA_URL }}/img/HomepageSplash.jpg' title='Widelands' alt='Widelands-Screenshot' />
25
 
    <br/>
26
 
    <br/>
 
19
 
 
20
<div class="blockContent">
 
21
   <P ALIGN=CENTER>
 
22
   <FONT SIZE=6 face='Times New Roman, Georgia, Times, serif'>
 
23
      <B>Welcome to Widelands.org</B>
 
24
      <br />
 
25
   </FONT>
 
26
   <FONT STYLE='font-size: 12pt'>
 
27
      <B>Website from a free realtime strategy game<br/>
 
28
         And its community
 
29
   </B></FONT>
 
30
   </P>
 
31
   
 
32
   <P ALIGN=CENTER>
 
33
      <br/>
 
34
      <img src='{{ MEDIA_URL }}/img/HomepageSplash.jpg' title='Widelands' alt='Widelands-Screenshot' />
 
35
      <br/><br/>
 
36
   </p>
27
37
</div>
28
38
 
29
39
<!-- Begin of text -->
30
40
<div class="itemText">
31
 
    <p>
32
 
        Widelands is an open source (GPLed) real-time strategy game.
33
 
        It is built upon the <a href='http://www.libsdl.org'>SDL</a> and other
34
 
        open source libraries and is (and will always be) under heavy 
35
 
        development. If you knew Settlers I &amp; II&#8482; (© Bluebyte), then
36
 
        you already have a rough idea what Widelands is all about because 
37
 
        widelands is heavily inspired by those two games.
38
 
    </p>
39
 
    <p>
40
 
        You can find detailed information on the game in our 
41
 
        <a href="/wiki">Wiki</a>. I you want to get a quick Overview, go to the
42
 
        <a title="General Info" href="{% url wiki_article "GeneralInfo" %}">General Info</a> 
43
 
        page.
44
 
    </p>
45
 
    <p>
46
 
        You can download the game on the 
47
 
        <a href="{% url wiki_article "DownloadPage" %}">DownloadPage</a>. You 
48
 
        can also find installation instructions and various troubleshooting 
49
 
        hints there.
50
 
    </p>
51
 
    <p>
52
 
        You are also invited to visit the <a href="{% url pybb_index %}">Forums</a>:
53
 
        chat with the community about the game, find playing mates for
54
 
        multiplayer, help translating, discuss graphics, music and much more.
55
 
    </p>
 
41
            Widelands is an open source (GPLed) real-time strategy
 
42
            game. It is built upon the <a
 
43
               href='http://www.libsdl.org'>SDL</a> and other open
 
44
            source libraries and still under heavy development. If
 
45
            you knew Settlers I & II&#8482; (© Bluebyte), then you
 
46
            already have a rough idea what Widelands is all about.
 
47
            Yes, it is where the inspiration for Widelands came
 
48
            from<br /><br />You can find more information on the
 
49
            game in our wiki.<br />For playing rules, scenarios and
 
50
            extensions see the  <a title="About Widelands"
 
51
               href="/wiki/AboutWidelands">About page</a>.<br />For
 
52
            installation directions and various troubleshooting see
 
53
            the <a href="/wiki/MainPage">Help page</a>.<br />
 
54
 
 
55
            Visit also the <a
 
56
               href="http://xoops.widelands.org/modules/newbb">Forums</a>
 
57
            for chat with the community about the game, playing,
 
58
            translation, graphics, music and much more.<br />
56
59
</div>
57
60
 
58
61
{% get_latest_posts 3 as latest_posts_list %}
59
62
{% if latest_posts_list %}
60
 
<h2>
61
 
    <a href="{% url news_index %}">Latest news:</a>
62
 
</h2>
63
 
    {% for object in latest_posts_list %}
64
 
        {% include "news/inlines/post_detail.html" %} 
65
 
    <br />
66
 
    {% endfor %}
67
 
    <a href="{% url news_index %}">News archive</a>
 
63
   <h2><a href="/news">Latest news:</a></h2>
 
64
   {% for object in latest_posts_list %}
 
65
   {% include "news/inlines/post_detail.html" %} 
 
66
   <br />
 
67
   {% endfor %}
68
68
{% endif %}
69
69
 
70
70
{% endblock %}